Authentication
Pagination
List endpoints share one pagination contract, with both offset and cursor modes.
Parameters
Send page for offset pagination with totals, or omit it for cursor pagination. perPage is 5–100 (default 10); cursor advances cursor mode. Advanced filters, sorters, and search are supported per endpoint.
Offset mode
With page, responses carry data plus a meta block with totals.
json
"meta": {"current_page": 1,"per_page": 20,"from": 1,"to": 20,"total": 42,"last_page": 3}
Cursor mode
Without page, responses return a cursor meta. Follow next_cursor until it is null.
json
"meta": {"per_page": 20,"next_cursor": "eyJpZCI6...","prev_cursor": null,"cursor": null}