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

> Search any email address to uncover associated data breaches, account registrations, infostealer logs, and service registration status all in one place. Get comprehensive intelligence on email exposure and digital footprint without leaving a single platform.

**Category:** Business Directories | **Website:** [intelbase.is/](https://intelbase.is/) | **Docs:** [parse.bot/marketplace/9989f4ec-e9b2-4fb4-91df-6c2be2cb22da/intelbase-is-api](https://parse.bot/marketplace/9989f4ec-e9b2-4fb4-91df-6c2be2cb22da/intelbase-is-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-intelbase-is-api-9989f4ec/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_modules

Returns the complete catalog of services and platforms that IntelBase checks during an email lookup. Each module represents a site whose registration or account status can be verified. Results are not paginated - the full list is returned in one call.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelbase-is-api-9989f4ec/list_modules \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### lookup_email

Comprehensive email intelligence lookup. Returns data breaches, registered accounts, infostealer log exposure, and service registration status for the queried email. Breach results are capped at 50 entries; the total count is in data_breaches.amount. A Turnstile captcha is solved automatically per request.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `email` | string | Yes | Email address to look up (e.g. user@example.com). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelbase-is-api-9989f4ec/lookup_email \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email":"<string>"}'
```
