Cursor pages
list methods return { items, next_cursor }. Pass ?cursor= (or the SDK
cursor= argument) to fetch the next page. next_cursor is null on the
last page.
The Python and TypeScript SDKs expose iter_all / iterAll for:
- workspaces
- files
- jobs
- domains
iter_access_labels / iterAccessLabels.
Offset pages
These two listings useoffset / limit (or start_after / page_size):
GET /v1/workspaces/{id}/files/{file_id}/outputs/{output_id}/membersPOST /v1/workspaces/{id}/tools/folder-metadata
folder_metadata also accepts start_after to resume a path-sorted page.
Filtered search
POST /v1/workspaces/{id}/filtered-search pages with a discriminated body:
the first call is { "type": "query", ... }; later pages send
{ "type": "page", "cursor": "..." }. The Python SDK wraps that as
client.search.filtered and client.search.filtered_page. The TypeScript SDK
does not yet wrap filtered search — call the HTTP route.