# Domains Monitor — 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 and monitor domain information across multiple zones, access free domain lists, and retrieve detailed zone metadata and account information. Aggregate domain data and track availability across supported TLDs.

**Category:** Developer Tools | **Website:** [domains-monitor.com/](https://domains-monitor.com/) | **Docs:** [parse.bot/marketplace/6ce1a1c2-b3dd-4441-9592-852fe156e626/domains-monitor-com-api](https://parse.bot/marketplace/6ce1a1c2-b3dd-4441-9592-852fe156e626/domains-monitor-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-domains-monitor-com-api-6ce1a1c2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### aggregate_and_export_freelists

Aggregate all domains from all free lists across all zones, randomize their order, and return them as a single collection. Useful for getting a shuffled sample of domains across all supported TLDs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-monitor-com-api-6ce1a1c2/aggregate_and_export_freelists \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_account_details

Retrieve account information including subscription status, token validity, and usage (API token required).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `token` | string | Yes | API Token |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-monitor-com-api-6ce1a1c2/get_account_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"token":"<string>"}'
```

### get_all_zones

Retrieve a list of all available domain zones/TLDs supported by the service (API token required).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `format` | string | No | Response format (json or xml) |
| `token` | string | Yes | API Token (obtained via subscription) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-monitor-com-api-6ce1a1c2/get_all_zones \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"format":"<string>","token":"<string>"}'
```

### get_domainzones_page

Scrape the main domain zones listing page to get a list of all 1,500+ supported zones with domain counts and update timestamps. Each zone entry contains the zone name, last updated timestamp, and total domain count.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-monitor-com-api-6ce1a1c2/get_domainzones_page \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_freelist_by_zone

Extract the 100 free sample domains for a specific zone from the /freelists/ page. Returns the zone name and an array of domain strings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `zone` | string | Yes | The domain zone to retrieve. Accepted values: com, net, org, info, gov, edu, de, ru, uk, nl, fr, us |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-monitor-com-api-6ce1a1c2/get_freelist_by_zone \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"zone":"<string>"}'
```

### get_freelists_page

Scrape the /freelists/ page and extract all domain names shown in the free preview lists for all available zones. Returns a dictionary keyed by zone name (com, net, org, info, gov, edu, de, ru, uk, nl, fr, us) with arrays of sample domains for each zone.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-monitor-com-api-6ce1a1c2/get_freelists_page \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_domains

Search for domains by keyword across all zones or a specific zone (PRO account required).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search string (min 3 chars) |
| `token` | string | Yes | API Token |
| `zone` | string | No | Specific zone or 'full' for all |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-monitor-com-api-6ce1a1c2/search_domains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>","token":"<string>","zone":"<string>"}'
```
