Skip to main content
Most list operations return a bounded page with this shape:

Request the next page

Pass the returned cursor back to the same operation with the same filters and sort order.
nextCursor: null means there is no next page.

Rules

  • Treat cursors as opaque strings. Do not decode, modify, or construct them.
  • Do not reuse a cursor with different filters, sorting, or organization credentials.
  • Persist the cursor only when you need to resume a bounded traversal.
  • Restart from the first page when an operation rejects a stale or invalid cursor.
The common list contract defaults to 25 items and permits at most 100. An endpoint can define a tighter bound, so use the value shown in its generated reference.