> ## Documentation Index
> Fetch the complete documentation index at: https://kavenio.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Pagination

List endpoints use cursor pagination when a result set can grow over time.

Common query parameters:

| Parameter | Meaning                                                                                                 |
| --------- | ------------------------------------------------------------------------------------------------------- |
| `limit`   | Maximum number of records to return. Bounds are endpoint-specific and shown in the generated reference. |
| `cursor`  | Opaque cursor returned by a previous list response.                                                     |

Common response shape:

```json theme={null}
{
  "ok": true,
  "data": {
    "items": [],
    "pagination": {
      "hasMore": false,
      "nextCursor": "next_page_cursor"
    }
  }
}
```

Some provider-derived endpoints use provider-native tokens such as `pageToken`
or platform-specific pagination fields. Treat all cursors and tokens as opaque
strings and pass them back unchanged.
