Skip to main content

Pagination

All list endpoints return a consistent envelope: an array of results in data and a pagination object describing how to fetch the next page.

Parameters

Pagination object

Iterating all pages

Keep requesting with the returned next_cursor until has_more is false (equivalently, until next_cursor is null).

Notes

  • Treat next_cursor as opaque — do not parse or construct it yourself. Its encoding may change without notice.
  • Some list endpoints include an extra meta object alongside data and pagination (for example, scope_counts on reports). data and pagination are always present on list responses.