Response Format
List endpoints return a wrapper object:Pagination
Query Parameters
startingAfter and endingBefore are mutually exclusive — only one can be used per request. Omitting both returns
results from the beginning.Iterating Through Pages
To fetch all results, use theid of the last item in each response as the startingAfter cursor for the next request. Continue until hasMore is false.
First page:
id from the previous response):
id from the current response):
Sorting
All list endpoints return results sorted bycreatedAt in descending order (newest first). The sort order is not configurable — there are no sort or orderBy parameters.
Filtering
Most list endpoints accept query parameters to narrow results. Available filters vary by endpoint and are documented in the API Reference.Filter Types
String matching filters are case-insensitive. Date filters use
YYYY-MM-DD format.