Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 50 | Number of items per page (1–200) |
offset | integer | 0 | Number of items to skip from the start |
limit: Min 1, max 200. Values outside this range are invalid (typically 422).offset: Min 0. Useoffset = 0for the first page, thenoffset = limitfor the next, and so on.
Request Examples
Response Shape
Paginated list responses always use this structure:items: Array of resources for the current page.count: Number of items in this response (i.e.items.length), not the total number of resources across all pages.
total field. To fetch all pages, keep requesting with increasing offset until you receive fewer items than limit (or zero). See Pagination for full examples in Python and JavaScript.
Which Endpoints Are Paginated?
Any list endpoint that returns a collection (List workspaces, List products, List items, List properties) supportslimit and offset. Single-resource endpoints (e.g. get workspace by ID) do not use pagination.