Parameters
Every paginated endpoint accepts the following query parameters:| Parameter | Type | Default | Description |
|---|---|---|---|
count | integer | 20 | Number of items per page. Min 1, max 100. |
page | integer | 1 | The page number to retrieve (1-indexed). |
Response structure
Paginated responses include acollection array with the requested items and a pagination object with metadata for navigating between pages.
The total number of items across all pages.
The number of items returned in the current page.
The total number of pages available.
The path to the previous page of results.
null when you are on the first page.The current page number.
The path to the next page of results.
null when you are on the last page.Iterating through pages
UsenextPage to walk through all pages until it returns null.