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

# Pagination

Pagination is standardized in our "list" API responses, e.g:

```json theme={null}
{
    "data": [
        /* objects */
    ],
    "pagination": {
        "page": 1,
        "page_size": 10,
        "total": 44
    }
}
```

To request additional pages or change the page size, you can add the following query parameters to any "list" API request:

```
{{URL}}?page=2&page_size=10
```
