# GET /api/v1/snapback/bookings

> List this account's Snapback bookings

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

## Description

Returns `data[]` of bookings — `domain`, `status`, `dropsAt`, the `price` debited and the `invoiceId` once a domain is caught — plus `hasMore` / `nextCursor`. For domains still available to book use `list_snapback_domains`.

## Query parameters

- `status` — enum. Optional: only bookings in this state. pending is the one still waiting for its drop; defaults to all. One of pending, success, missed, cancelled, renewed, all.
- `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/bookings?status=pending&limit=3&cursor=1" \
  -H "Authorization: Bearer inl_live_…"
```

## Response · 200

```json
{
  "data": [],
  "hasMore": true,
  "nextCursor": "example.se",
  "total": "example.se"
}
```

## 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

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

