Skip to main content
List endpoints return at most 10 records per page by default (maximum 100). Pagination is cursor-based; there are no page numbers, and the cursor is opaque.

Query parameters

Response shape

  • data: the page of records.
  • next_cursor: pass back to fetch the next page. null on the last page; that’s how you know you’re done.

Walking a list

What you cannot do

  • Jump to a specific page.
  • Walk a list backwards.
  • Use a cursor with a different limit than the page it came from (this works in practice, but is not contract; don’t rely on it).