Skip to main content
The API uses cursor-based pagination to efficiently handle large datasets for endpoints that return multiple items. Cursor pagination provides better performance than offset-based pagination, especially for large datasets.

Query Parameters

Response Format

Paginated responses follow the JSON:API specification and include three main sections:

Usage Examples

First page (default size):
First page with custom size:
Next page using cursor:
To navigate through paginated results:
  1. First page: Make a request without the page[cursor] parameter
  2. Subsequent pages: Use the next_cursor value from the meta section, or use the next URL from the links section
  3. Previous pages: Use the prev_cursor value from the meta section, or use the prev URL from the links section
Recommended approach: Use the URLs provided in the links section for navigation, as they include all necessary parameters and proper encoding.