Pagination
List endpoints return paginated results. Usepage and limit query parameters to control the response.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (1-indexed) |
limit | integer | 20 | Items per page (max: 100) |
Example
Response format
All paginated responses include apagination object:
Best practices
- Use reasonable page sizes (10-50 items) for most use cases
- Cache responses when possible to reduce API calls
- Use the
totalfield to build pagination UI or detect when you’ve fetched everything

