Skip to main content

Overview

List endpoints use cursor-based pagination. The cursor is returned in the X-Page-Next response header.

Query Parameters

page-size
integer
Number of items to return per page (default varies by endpoint)
page-continue
string
Cursor token from the previous response’s X-Page-Next header

Response Headers

X-Page-Next
string
Cursor token for the next page. Present when more results are available, absent when you’ve reached the last page.

Example

First Page

Response:

Next Page

Paginating All Results

Notes

  • Cursors are opaque tokens - don’t decode or modify them
  • Use the exact value from X-Page-Next without modification
  • Fetch pages sequentially, not in parallel