Parameters
Every paginated endpoint accepts the following query parameters:Response structure
Paginated responses include acollection array with the requested items and a pagination object with metadata for navigating between pages.
integer
The total number of items across all pages.
integer
The number of items returned in the current page.
integer
The total number of pages available.
string | null
The path to the previous page of results.
null when you are on the first page.integer
The current page number.
string | null
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.