Pagination
List endpoints use cursor-based pagination. Results are ordered by creation date (newest first).
Query parameters
| Parameter | Type | Description |
|---|---|---|
| cursor | string | Opaque cursor from a previous response. Omit for the first page. |
| limit | integer | Number of items per page. Default 25, max 100. |
Response format
{
"data": [ ... ],
"pagination": {
"next_cursor": "eyJjcmVhdGVkX2F0Ijoi...",
"has_more": true,
"limit": 25
}
}Iterating pages
To fetch the next page, pass the next_cursor value as the cursor query parameter. Continue until has_more is false.
GET /v1/domains?limit=10
GET /v1/domains?limit=10&cursor=eyJjcmVhdGVkX2F0Ijoi...