Response format
Paginated responses include apagination object alongside the data array:
Query parameters
Paginating through results
1
Fetch the first page
Make a request with your desired
limit and no cursor parameter.2
Check for more results
Inspect
pagination.has_more in the response. If true, there are more pages.3
Fetch subsequent pages
Pass the
next_cursor value as the cursor query parameter:4
Repeat until done
Continue fetching pages until
has_more is false or next_cursor is null.