Skip to main content
List endpoints return paginated results using cursor-based pagination.

Response format

Paginated responses include a pagination object alongside the data array:

Query parameters

Cursors are opaque strings. Do not modify, decode, or construct cursors manually — they are subject to change without notice. Always use the next_cursor value exactly as returned.

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.

Full iteration example

Last modified on March 4, 2026