paginationLimit & paginationOffset in the request payload to work with pagination.
For example to retrieve the second page of BTC wallets:
How to paginate through list API results
paginationLimit & paginationOffset in the request payload to work with pagination.
For example to retrieve the second page of BTC wallets:
{
"currencies": ["BTC"],
"paginationLimit" : 10,
"paginationOffset" : 1
// Use 0 for the 1st page,
// 1 for the 2nd page, and so on...
}