All list endpoints in the Clarky API return paginated results. Pagination is page-based — you ask for a specific page and a page size, and the response tells you how many pages there are in total.Documentation Index
Fetch the complete documentation index at: https://docs.clarky.ai/llms.txt
Use this file to discover all available pages before exploring further.
Query parameters
The 1-indexed page number to fetch.
Number of items per page. Maximum is 100. Requests above the maximum return
validation_error.Response shape
Every list endpoint wraps results indata (the items for the current page) and pagination (metadata about the pagination state).
The current page number (1-indexed).
Number of items returned per page.
Total number of items across every page.
Total number of pages.
total_pages is Math.ceil(total / page_size).Examples
Fetch the first page
Fetch a larger page
Iterate every page
Endpoints that don’t paginate
A small number of endpoints return collections without pagination because the result set is bounded — for example, stages within a pipeline. These return{ "data": [...] } with no pagination object. The shape is documented per-endpoint.
Single-resource responses
For endpoints that return a single resource (e.g.GET /contacts/{id}), the response is just { "data": { ... } } — no pagination object.

