Skip to main content
List endpoints return an items array and pagination metadata:
  • count is the number of items in the current response.
  • nextCursor is present when another page is available.
  • An omitted nextCursor means the current page is the last page.
Pass nextCursor back as the next request’s cursor query parameter:
Treat cursors as opaque strings. Do not decode, modify, or construct them. When paging through a filtered collection, keep the same filters on every request and add only the cursor returned by the preceding page.
List endpoints choose their own page size; the API does not expose a page-size parameter. Process every item and continue until nextCursor is absent.