# Kerberus — 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.

> Scan Web3 domains to detect scams, phishing attempts, and fraudulent activity, receiving instant safety classifications that show whether a domain is blocklisted, whitelisted, or flagged as suspicious. Protect yourself by checking domain safety status before interacting with Web3 platforms and services.

**Category:** Web3 & Onchain | **Website:** [www.kerberus.com/](https://www.kerberus.com/) | **Docs:** [parse.bot/marketplace/97b26a31-ebdb-4cb2-8337-5602a6ca4b4e/kerberus-com-api](https://parse.bot/marketplace/97b26a31-ebdb-4cb2-8337-5602a6ca4b4e/kerberus-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-kerberus-com-api-97b26a31/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### scan_domain

Scan a Web3 site domain to check if it is flagged as a scam, phishing site, or is whitelisted as safe. Returns blocklist/whitelist status and an overall safety classification (green for safe, red for blocked).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `domain` | string | Yes | The domain to scan for safety (e.g. 'uniswap.org', 'opensea.io'). May include or omit protocol prefix (https:// is stripped automatically). Should be a bare domain without path. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kerberus-com-api-97b26a31/scan_domain \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain":"<string>"}'
```
