Skip to main content
All list endpoints return paginated responses. This guide explains the pagination model and how to fetch all records efficiently.

Response structure

Every paginated endpoint returns the same envelope:

Parameters

Pass these as query parameters:
The page-size query parameter’s name varies by endpoint — Get Results uses page_size, while List Accounts uses limit. Check the specific endpoint’s own page if you’re unsure.

Iterating through all pages

Free plan limit

On free plans, paginated endpoints cap results at a fixed limit regardless of total_results. When this cap is hit, the response includes a warning field:
Upgrade your plan to remove this restriction.

Endpoints that support pagination

Use the maximum page size (page_size=100 for Get Results; check each endpoint’s own parameter name) to minimize the number of requests when fetching large datasets.