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.Documentation Index
Fetch the complete documentation index at: https://docs.aspect.systems/llms.txt
Use this file to discover all available pages before exploring further.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page[size] | integer | 30 | Number of items per page (max 100) |
page[cursor] | string | - | Cursor token for retrieving the next/previous page |
Response Format
Paginated responses follow the JSON:API specification and include three main sections:Usage Examples
First page (default size):Navigation
To navigate through paginated results:- First page: Make a request without the
page[cursor]parameter - Subsequent pages: Use the
next_cursorvalue from themetasection, or use thenextURL from thelinkssection - Previous pages: Use the
prev_cursorvalue from themetasection, or use theprevURL from thelinkssection
links section for navigation, as they include all necessary parameters and proper encoding.