Skip to main content
GET
List all entities with pagination

Authorizations

X-API-Key
string
header
required

Headers

customer
string
required

Workspace identifier

Path Parameters

projectId
string
required

Query Parameters

branch_id
string
entity_type
string
starting_after
string

Keyset cursor. Start a walk with starting_after=0, then pass each response's nextPageStart for the next page, continuing while moreAvailable is true. This is the preferred way to walk entities — O(limit) per page at any depth and skip-free. When set, offset is ignored.

offset
number

Legacy offset pagination, available only below 1000. Cost grows with the offset and, under heavy deletes, a page can come up short and skip entities — prefer starting_after.

limit
number

Page size, at most 1000. Larger values receive a 400 Bad Request response.

Response

200 - application/json
items
object[]
required
moreAvailable
boolean

Whether more pages may exist (keyset mode only). Keep paginating while true.

nextPageStart
string

Cursor to pass as starting_after for the next page (keyset mode only). Opaque; compare only for equality.