cursor: The cursor pointing to the start of the next page (omit for first request)limit: The number of items to return per page (default: 25, max: 100)
Request Example
Response Headers
Each paginated response includes the following headers:X-Next-Cursor: The cursor value to retrieve the next page of results. If null or empty, there are no more pages.X-Page-Size: The number of items returned in this response.
Usage Notes
- For the initial request, omit the
cursorparameter. - For subsequent requests, use the value from
X-Next-Cursorheader as thecursorquery parameter. - If
X-Next-Cursoris empty or not present in the response, you’ve reached the end of the dataset. - While we attempt to respect the
limitparameter, you may occasionally receive fewer or more records than requested. - Continue pagination until you receive an empty
X-Next-Cursorheader to ensure no records are missed.
Example Workflow
-
Initial request:
-
Server response headers:
-
Next request:
-
Repeat steps 2-3 until
X-Next-Cursoris empty or not present in the response.