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

# Pagination

> Offset pagination parameters and list response shape.

Use offset-based pagination on list endpoints.

## Parameters

* `limit`: default 20, max 100
* `offset`: default 0

<ResponseExample>
  ```json theme={null}
  {
    "data": [],
    "total": 0,
    "limit": 20,
    "offset": 0
  }
  ```
</ResponseExample>
