GET /v1/clients, GET /v1/projects) return a page of results plus a meta block describing the full set.
Pagination
Control the page with two query parameters:
The response repeats these in
meta along with the total count:
page=0, page=1, … until page * limit >= total.
Some endpoints expose an unpaginated
/all variant (for example GET /v1/clients/all) that returns a lightweight { id, name }[] of every record — handy for populating dropdowns without paging.Filtering
Most list endpoints accept a free-textsearch parameter plus resource-specific filters. Common examples:
Filters combine with
AND. The exact set differs per endpoint — check each endpoint’s Query Parameters in the API reference.