limit and offset query parameters.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 25 | Number of results to return. Max 100. |
offset | integer | 0 | Number of results to skip before returning data. |
include_total | boolean | true | Whether to include meta.total in the response. |
Response shape
meta.total— total number of records matching your filters (before pagination)meta.limit— the applied limitmeta.offset— the applied offset
Paging through results
Skipping the total count
For large datasets, computingmeta.total adds a small overhead. If you don’t need it
(e.g. for infinite scroll), disable it:
meta.total as null but eliminates the count query.
Limits
The maximumlimit per request is 100. To retrieve more than 100 records, page through
results using offset.
If you need to export large datasets (thousands of records), consider using the aggregate
endpoints to summarise data instead of paging through raw entities.