Get Started
Pagination
By default, all “List” endpoints return paginated results. You can control pagination using these query parameters:
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
This request fetches up to 50 items, starting from the item identified by the cursor.
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
cursor
parameter. - For subsequent requests, use the value from
X-Next-Cursor
header as thecursor
query parameter. - If
X-Next-Cursor
is empty or not present in the response, you’ve reached the end of the dataset. - While we attempt to respect the
limit
parameter, you may occasionally receive fewer or more records than requested. - Continue pagination until you receive an empty
X-Next-Cursor
header to ensure no records are missed.
Example Workflow
-
Initial request:
-
Server response headers:
-
Next request:
-
Repeat steps 2-3 until
X-Next-Cursor
is empty or not present in the response.