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

# Rate Limiting & Pagination

> API rate limits and how to paginate results

## Rate Limits

| Limit                    | Value        |
| ------------------------ | ------------ |
| Per endpoint, per second | 1 request    |
| Per endpoint, per day    | 128 requests |

If exceeded, the API responds with `HTTP 429 Too Many Requests`. Contact Zodia to adjust limits for specific endpoints.

## Pagination

For endpoints returning lists, use `paginationLimit` and `paginationOffset` in the request payload.

```json theme={null}
{
  "currencies": ["BTC"],
  "paginationLimit": 10,
  "paginationOffset": 0
}
```

`paginationOffset` is zero-based: `0` = first page, `1` = second page, and so on.
