page and pageSize (or per_page on some endpoints) query parameters. This page covers the request parameters, the response shape, and a pattern for fetching all results programmatically.
Request parameters
The page number to return, 1-indexed.
The number of items per page. Maximum is 100. Some endpoints use
per_page as an alias.Response format
Paginated responses wrap the result set in adata array and include a pagination or meta object:
The list of items for the requested page.
The current page number.
The number of items returned on this page.
The total number of items across all pages.
The total number of pages at the current
pageSize.Some endpoints return the pagination envelope under a
meta key rather than pagination. The field names (total, page, per_page) are the same regardless of which key wraps them.