Skip to main content
Most list endpoints in the Zeeg API return paginated results. Instead of returning every record at once, responses are split into pages that you can iterate through.

Parameters

Every paginated endpoint accepts the following query parameters:
The /organizations/users endpoint uses per_page instead of count. All other paginated endpoints use count.

Response structure

Paginated responses include a collection array with the requested items and a pagination object with metadata for navigating between pages.
integer
The total number of items across all pages.
integer
The number of items returned in the current page.
integer
The total number of pages available.
string | null
The path to the previous page of results. null when you are on the first page.
integer
The current page number.
string | null
The path to the next page of results. null when you are on the last page.

Iterating through pages

Use nextPage to walk through all pages until it returns null.
Use a smaller count (e.g. 10) if you need faster individual responses, or a larger count (up to 100) to reduce the total number of requests.
Last modified on April 29, 2026