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

# Pagination

> How list endpoints paginate responses

## Parameters

| Parameter | Type    | Default | Description              |
| --------- | ------- | ------- | ------------------------ |
| `limit`   | integer | 50      | Items per page (max 100) |
| `offset`  | integer | 0       | Number of items to skip  |

## Example

```bash theme={null}
curl "https://api.voyantcloud.com/v1/products?limit=20&offset=40" \
  -H "Authorization: Bearer $VOYANT_API_KEY"
```

```json theme={null}
{
  "data": [/* ... */],
  "meta": {
    "total": 150,
    "limit": 20,
    "offset": 40,
    "hasMore": true
  }
}
```

<Tip>Use `hasMore` to determine if more pages are available without calculating page numbers.</Tip>
