Skip to main content
Every collection endpoint returns the same wrapper and uses opaque cursors, so the same paging logic works across the API.

Request parameters

integer
default:"20"
Maximum items per page. Minimum 1, maximum 100.
string
An opaque cursor from a previous response’s pagination.nextCursor. Omit it on the first request.

Response shape

array
The page of resources.
string | null
Pass this as cursor to fetch the next page. null when there are no more pages.
boolean
Whether another page is available.

Paging through all results

Treat the cursor as opaque: pass it back exactly as received, and stop when hasMore is false.
cURL
Do not parse or construct cursors yourself. Their format is internal and may change without notice.