# Duplichecker — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Duplichecker provides 1 callable API endpoint through the Parse marketplace.

**Category:** Developer Tools | **Website:** [www.duplichecker.com/](https://www.duplichecker.com/) | **Docs:** [parse.bot/marketplace/f9ad7921-2799-483f-879e-785b01fdd994/duplichecker-com-api](https://parse.bot/marketplace/f9ad7921-2799-483f-879e-785b01fdd994/duplichecker-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-duplichecker-com-api-f9ad7921/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### check_plagiarism

Checks the provided text for plagiarism by splitting it into sentences and searching for matches across the web. Each sentence is analyzed independently and classified as unique or plagiarized, with matching source URLs provided for plagiarized content. The check requires solving a reCAPTCHA and establishing a session, so latency is higher than a simple API call (typically 10-30 seconds). Text is limited to 10,000 characters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `exclude_urls` | string | No | Comma-separated list of URLs to exclude from plagiarism matching. Useful for excluding your own published content. |
| `text` | string | Yes | The text to check for plagiarism. Maximum 10,000 characters. The text is split into sentences at sentence-ending punctuation (.!?) for per-sentence analysis. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-duplichecker-com-api-f9ad7921/check_plagiarism \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"exclude_urls":"<string>","text":"<string>"}'
```
