API ReferenceGetting Started
Pagination
All list endpoints use **offset-based pagination** controlled by two query parameters:
All list endpoints use offset-based pagination controlled by two query parameters:
| Parameter | Type | Default | Max | Description |
|---|---|---|---|---|
limit | integer | 100 | 200 | Number of records to return |
offset | integer | 0 | — | Number of records to skip |
Example
Fetch the second page of 20 clients:
GET /clients?limit=20&offset=20Response shape
List endpoints return a JSON array directly (not wrapped in a data key):
[
{ "id": 1, "name": "Acme Corp", ... },
{ "id": 2, "name": "Globex", ... }
]To determine whether more records exist, compare the count of returned items to your limit. If count < limit, you are on the last page.