Pagination
All list endpoints use page-number (offset) pagination, controlled by a page number and a page size parameter. There are no cursors: request a specific page directly withpage[number].
Pagination metadata is included in every list response under the
meta key. Use total_pages to know when to stop, and increment page[number] to walk through the results.
Sorting
Most list endpoints accept asort parameter. Prefix the field name with - for descending order.
-created_at (newest first).
Filtering
There is no global filter engine. Filtering is endpoint-specific: each list endpoint defines its ownfilter[field] parameters, and only the filters documented on that endpoint are accepted. The examples below are real for the endpoints noted.