Translation API · Concept

Pagination

Traverse project, quote, webhook, and delivery lists with signed opaque cursors.

List endpoints use cursor pagination. Pass a returned cursor back unchanged.

GET /v2/projects?limit=25&cursor=<next_cursor>

Page Envelope

{
  "object": "list",
  "data": [],
  "has_more": true,
  "next_cursor": "opaque-signed-value"
}

Continue only while has_more is true and next_cursor is non-null.

Cursor Safety

Cursors are opaque and tied to the endpoint and filters that produced them. Do not decode, edit, construct, or reuse a cursor with another endpoint or filter set.

Limits and Filters

Project and quote lists default to 25 and accept at most 100 items. Supported filters include status, external ID, and creation date bounds as documented by each endpoint. Changing filters starts a new pagination sequence.

Related Reference