Paginated endpoints
These endpoints return a page of results:GET /workspacesGET /ingestionsGET /queriesGET /requests
Parameters
Control pagination with two query parameters:Response shape
Every list response wraps the items in a page object:Fetch the first page
Request a page without a cursor. Setlimit to control the page size.
Fetch the next page
Passnext_cursor from the previous response as the cursor parameter.
next_cursor until has_more is false and next_cursor is null.
Page through every item
Loop until there are no more pages.Cursors are opaque. Do not parse, build, or modify them — treat each
next_cursor as a token you pass back unchanged. A cursor stays valid as you page forward but is not guaranteed to be stable across long periods.