Request Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | endpoint-specific | Maximum number of items to return. |
offset | integer | 0 | Number of items to skip. |
Response Fields
List endpoints that support pagination return:| Field | Description |
|---|---|
total | Total matching items when available. |
pagination.limit | Number of items requested. |
pagination.offset | Current offset. |
pagination.has_more | Whether another page is likely available. |
Fetching the Next Page
Whenhas_more is true, request the next page by adding limit to offset.
Client Guidance
- Keep page sizes small for live surfaces.
- Do not assume every endpoint returns
total. - Preserve ordering between requests by keeping the same filters and sort.
- Prefer MCP tools for model-facing exploration when pagination details are not important to the end user.
