# Domains Cloudflare — 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 for available domain names and check their pricing to find the perfect domain for your project. Discover all supported top-level domains (TLDs) available through Cloudflare Registrar to expand your domain registration options.

**Category:** Developer Tools | **Website:** [domains.cloudflare.com/](https://domains.cloudflare.com/) | **Docs:** [parse.bot/marketplace/9d7a792c-74b6-482f-bf0c-da79758db912/domains-cloudflare-com-api](https://parse.bot/marketplace/9d7a792c-74b6-482f-bf0c-da79758db912/domains-cloudflare-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-cloudflare-com-api-9d7a792c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_tlds

List all top-level domains (TLDs) supported by Cloudflare Registrar for domain registration. Returns the complete set of TLDs (400+) available for registration, from common ones like .com and .net to specialized extensions like .app and .dev. No parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-cloudflare-com-api-9d7a792c/list_tlds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_domains

Search for available domain names on Cloudflare Registrar. Accepts a bare name (e.g. 'mysite') to get suggestions across multiple TLDs, or a full domain with TLD (e.g. 'mysite.com') to check specific availability. Returns a list of domain suggestions with pricing and availability, plus a detailed check_result when a specific TLD is queried. Each domain includes registration price and renewal cost. The check_result (present only for TLD-specific queries) adds fee breakdown and registration eligibility.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `domain` | string | Yes | Domain name to search for. Can be a bare name (e.g. 'mysite') or a full domain with TLD (e.g. 'mysite.com'). When a TLD is included, the response includes a check_result with detailed availability and fee information for that specific domain. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-domains-cloudflare-com-api-9d7a792c/search_domains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain":"<string>"}'
```
