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.Documentation Index
Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt
Use this file to discover all available pages before exploring further.
Parameters
Every paginated endpoint accepts the following query parameters:| Parameter | Type | Default | Description |
|---|---|---|---|
count | integer | 20 | Number of items per page. Min 1, max 100. |
page | integer | 1 | The page number to retrieve (1-indexed). |
Response structure
Paginated responses include acollection array with the requested items and a pagination object with metadata for navigating between pages.
The total number of items across all pages.
The number of items returned in the current page.
The total number of pages available.
The path to the previous page of results.
null when you are on the first page.The current page number.
The path to the next page of results.
null when you are on the last page.Iterating through pages
UsenextPage to walk through all pages until it returns null.