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

# Pagination

> How to paginate through list API results

Some APIs may involve retrieving a list of records.  You can use `paginationLimit` & `paginationOffset` in the request payload to work with pagination.

For example to retrieve the second page of BTC wallets:

```json theme={null}
{
    "currencies": ["BTC"],
    "paginationLimit" : 10,
    "paginationOffset" : 1  
    // Use 0 for the 1st page, 
    // 1 for the 2nd page, and so on...
}

```
