Skip to main content
Endpoints that return lists of resources use pagination. Paginated responses include a paging object:

Requesting a specific page

Use the page and page_size query parameters:

POST body pagination

POST-based search and reporting endpoints accept page and page_size directly in the request body instead of as query parameters.
The response includes the same paging envelope:

Iterating all pages

Aggregated reporting endpoints cap responses at 10,000 rows total regardless of pagination. If your full result set exceeds this, use the Entity Table Export endpoint instead, which returns a full CSV without a row cap.

Defaults and limits

  • When not specified, the API returns page 1 with a page size of 50.
  • The maximum page size is typically 2,000, though some endpoints enforce a smaller limit.
  • Endpoints that return paginated responses are identified as such in their documentation.