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

# Pagination

List API methods share a common JSON structure with resource name array and meta pagination description.

Query parameters `per_page` and `page` are available to browse the list.

* Minimum `per_page`: 1
* Maximum `per_page`: 100
* Default `per_page`: 100
* Default `page`: 1

<br />

Example 👇

|               |                                                                                                                                                                                                           |
| ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| GET           | [https://thirdparty.qonto.com/v2/transactions?iban=FR7616798000010000004321396\&per\_page=20\&page=2](https://thirdparty.qonto.com/v2/transactions?iban=FR7616798000010000004321396\&per_page=20\&page=2) |
| iban          | FR7616798000010000004321396                                                                                                                                                                               |
| per\_page     | 20                                                                                                                                                                                                        |
| current\_page | 2                                                                                                                                                                                                         |

```json theme={null}
{
  "transactions": [{...}],
  "meta": {
    "current_page": 2,
    "next_page": 3,
    "prev_page": 1,
    "total_pages": 11,
    "total_count": 210,
    "per_page": 20
  }
}
```
