Retrieve lists of items one page at a time and control page size and start point.
All API endpoints that return lists of items are paginated. You can control how many items are returned per page and where each page starts using query parameters.
Query Parameters
_count(integer) - The number of items per page. By default, this value is 32._start(string/token) - A token returned by the previous call in the next_token attribute in the reply JSON.
Example Response
{
"total": 100,
"count": 32,
"next_token": "XXX1",
"data": [ ... ]
}Response Fields
total- Total number of items available.count- Number of items returned in this page.next_token- Token to fetch the next page. If there are no more results, this may be omitted or returned as null.data- Array of items
