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

# Customer API: Pagination

> How to paginate through results in the Otark Customer API

All query GET endpoints in the Otark API support pagination to help you manage large sets of data efficiently. The pagination mechanism uses two key parameters: `page` and `limit`.

<h2 id="query-parameters">
  Query Parameters
</h2>

* `page`: The page number to retrieve. This parameter is used to specify which page of the data you want to fetch. The default value is `1`.

* `limit`: The number of items to retrieve per page. The default value is `10`, and the maximum allowable value is `100`.

<h2 id="example-request">
  Example Request
</h2>

```bash theme={null}
curl -X GET "https://api.otark.com/v1/assets?limit=20&page=2" \
-H "X-Api-Key: YOUR_API_KEY"
```
