Skip to main content
The Autheo REST API returns paginated results for endpoints that can return large collections of data. All paginated responses follow a consistent format.

Response format

Paginated endpoints return a JSON object with an items array and a next_page_params object:
When next_page_params is null, you have reached the last page.

Fetching the next page

Pass next_page_params as query parameters to retrieve the next page:

JavaScript pagination helper

Page size

The default page size is 50 items. This is fixed per endpoint and cannot be changed via query parameters.

Rate limiting

Paginating through large datasets with many sequential requests can trigger rate limits. Add a small delay between pages for large backfills: