Overview
The Zamp API supports pagination for all list endpoints. When an API response returns a list of objects, regardless of the amount, pagination is supported.
Key Concepts
- Objects are nested in a
data attribute
- A
nextCursor attribute indicates whether additional pages exist
- When
nextCursor is null, no more pages remain
- Results default to 10 items per response (maximum: 100)
- Objects are ordered by creation timestamp in descending order
Query Parameters
Example
First request:
Response:
Next page request using the cursor:
Final response (no more pages):
Last modified on August 19, 2026