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

> Browse Sedo featured and auction domain listings, search domains by keyword, retrieve the full TLD list, and get current currency exchange rates used for domain pricing.

**Category:** Marketplaces | **Website:** [sedo.com/](https://sedo.com/) | **Docs:** [parse.bot/marketplace/a7204840-f484-481e-998b-2eac4dd58642/sedo-com-api](https://parse.bot/marketplace/a7204840-f484-481e-998b-2eac4dd58642/sedo-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-sedo-com-api-a7204840/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_exchange_rates

Retrieve the current currency exchange rates used by the Sedo marketplace for domain pricing conversions. Returns a matrix of conversion rates between all supported currencies (EUR, USD, GBP, CHF, CAD, etc.) along with the date the rates were last updated.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sedo-com-api-a7204840/get_exchange_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_tld_list

Retrieve the complete list of top-level domains (TLDs) available on the Sedo marketplace. Each entry includes the TLD code, display string, and whether a special agreement or notice is required. The full list (1000+) is returned in one response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language code for response content. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sedo-com-api-a7204840/get_tld_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>"}'
```

### list_auction_domains

Retrieve active auction domain listings from the Sedo marketplace. Each listing includes the domain name, current bid price, time remaining, a detail link, and a description with the estimated end time. The full set of active auctions is returned in one response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language code for response content. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sedo-com-api-a7204840/list_auction_domains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>"}'
```

### list_featured_domains

Retrieve featured domain listings from the Sedo marketplace. Each listing includes the domain name, asking price, a detail link, and a description containing traffic and language metadata. Results vary by country code; some codes may yield fewer or no listings. The full set of featured domains is returned in one response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Two-letter country code to filter featured listings. |
| `language` | string | No | Language code for response content. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sedo-com-api-a7204840/list_featured_domains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","language":"<string>"}'
```

### search_domains

Search for domains by keyword on the Sedo marketplace. Returns matching domain names and a broker agent contact. Supports pagination via page number and price-range filtering. Each page returns a batch of matching domain name strings. For detailed listing info, look up individual domains via the featured or auction endpoints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Search keyword to find matching domains. |
| `language` | string | No | Language code for response content. |
| `page` | integer | No | Page number for pagination. |
| `price_end` | integer | No | Maximum price filter. 0 means no maximum. |
| `price_start` | integer | No | Minimum price filter. 0 means no minimum. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sedo-com-api-a7204840/search_domains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","language":"<string>","page":"<integer>","price_end":"<integer>","price_start":"<integer>"}'
```
