# Auctions Godaddy — 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 browse domain auction listings on GoDaddy Auctions, including expired domains and closeout (Buy It Now) listings. Retrieve current bid prices, bid counts, auction end times, domain valuations, and backlink metrics across all active auction types.

**Category:** Marketplaces | **Website:** [auctions.godaddy.com/](https://auctions.godaddy.com/) | **Docs:** [parse.bot/marketplace/ccf1baf2-7632-48f3-afa0-50ce20beb3c6/auctions-godaddy-com-api](https://parse.bot/marketplace/ccf1baf2-7632-48f3-afa0-50ce20beb3c6/auctions-godaddy-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-auctions-godaddy-com-api-ccf1baf2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_closeout_auctions

List closeout (Buy It Now) domain auctions (type 38). Returns the same auction listing format as search_auctions, filtered to closeout domains only. Results are sorted by bid count descending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-auctions-godaddy-com-api-ccf1baf2/get_closeout_auctions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### get_domain_appraisal

Get GoValue domain appraisal/valuation for a specific domain.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `domain_name` | string | Yes | The domain name to appraise. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-auctions-godaddy-com-api-ccf1baf2/get_domain_appraisal \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain_name":"<string>"}'
```

### get_expired_domain_auctions

List expired domain auctions (type 16). Returns the same auction listing format as search_auctions, filtered to expired domains only. Results are sorted by bid count descending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-auctions-godaddy-com-api-ccf1baf2/get_expired_domain_auctions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### search_auctions

Search for domain auctions with filters and pagination. Returns auction listings sorted by the specified field, with domain valuation, bid count, backlink metrics, and SEMrush data for each result. Without a query, returns all auctions across the specified types. Pagination is offset-based via the start parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results to return per page. |
| `query` | string | No | Search term to filter domains by keyword (e.g. 'tech', 'crypto'). Omitting returns all auctions. |
| `sort_by` | string | No | Sort field and direction. Format: 'field:direction'. Accepted values: 'auctionBids:desc', 'auctionValuationPrice:desc'. |
| `start` | integer | No | Pagination start offset (0-based). |
| `types` | string | No | Comma-separated list of auction type IDs to include. Accepted values: 16 (Expired), 38 (Closeout), 20 (Expiry), 39 (Pre-Release). Omitting defaults to all types: '16,38,20,39'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-auctions-godaddy-com-api-ccf1baf2/search_auctions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>","sort_by":"<string>","start":"<integer>","types":"<string>"}'
```
