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

# Pagination

> Current list pagination conventions.

Pagination is currently endpoint-specific rather than a single global cursor contract.

For example, call listing uses offset pagination:

```text theme={null}
GET /v1/calls/?limit=50&offset=0
```

`limit` defaults to `50` and must be between `1` and `100`; `offset` defaults to `0` and cannot be negative. Calls also support an optional `state` filter.

Check each generated API operation for its supported query parameters instead of assuming every list endpoint has the same pagination fields.
