# GET /api/v1/snapback/domains

> List the domains open for a Snapback booking

- Group: domains
- Tier: R
- Required scope: read:domains
- Docs: https://api.inleed.com/reference/domains/list-snapback-domains

## Description

Returns `data[]` of dropping domains — `domain`, `expiresAt`, `length`, `price` (ex VAT), `priceGross` (inc VAT) and `canBeBooked` — plus `hasMore` / `nextCursor`. Book one with `book_snapback_domain`; check what it would cost this account with `get_snapback_eligibility`.

## Query parameters

- `query` — string. Optional: only domains whose name contains this text, e.g. bygg.
- `tld` — enum. One of .se, .nu, null.
- `expires_within_days` — integer. Optional: only domains dropping within this many days from today (0–365). Range 0–365.
- `expires_from` — string · date
- `expires_to` — string · date
- `min_length` — integer. Optional: shortest name length to include, counting the whole domain including the TLD. Range 1–63.
- `max_length` — integer. Optional: longest name length to include, counting the whole domain including the TLD. Use it for "short domains". Range 1–63.
- `max_price_ore` — integer. Optional: price ceiling in öre, ex VAT (20000 = 200 kr). Compare against data[].price, not priceGross. Minimum 0.
- `featured` — boolean. Optional: only domains Inleed has highlighted, which are also the ones carrying backlink and traffic statistics.
- `include_booked` — boolean
- `sort` — enum. Optional: order the results. Defaults to soonest expiry first; an explicit sort returns a single page with no cursor. One of expires_at, length, price, domain.
- `direction` — enum. Optional: sort direction, used only together with sort. One of asc, desc.
- `limit` — integer. Page size for a collection. Range 1–100.
- `cursor` — integer. Opaque pagination cursor. Pass back the previous response’s nextCursor; stop when it is null. Minimum 0.

## Request

```bash
curl -X GET "https://mcp.inleed.com/api/v1/snapback/domains?query=example.se&tld=.se&expires_within_days=3&expires_from=2026-08-30T09%3A12%3A44.000Z&expires_to=2026-08-30T09%3A12%3A44.000Z&min_length=1&max_length=1&max_price_ore=149&featured=true&include_booked=true&sort=expires_at&direction=asc&limit=3&cursor=1" \
  -H "Authorization: Bearer inl_live_…"
```

## Errors

- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope
- **422** Validation error — codes: validation_failed
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

## Related

- GET /api/v1/snapback/domains/{domain} — https://api.inleed.com/reference/domains/get-snapback-domain

