Parameters
| Parameter | Type | Description |
|---|---|---|
cursor | string | Cursor for the next page. Omit for the first page. |
count | integer | Number of items per page. |
Response fields
Paginated responses use theOrderedCollectionPage type:
| Field | Description |
|---|---|
totalItems | Total number of items in the collection (may be null for some endpoints) |
itemCount | Number of items in this page |
nextCursor | Cursor for the next page, null if there are no more pages |
next | Pre-built URL to fetch the next page |
orderedItems | The items in this page |
Iterating through pages
Use thenext URL directly, or pass nextCursor as the cursor parameter in your next request. When nextCursor is null, you’ve reached the last page.