Skip to main content
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:
{
    "currencies": ["BTC"],
    "paginationLimit" : 10,
    "paginationOffset" : 1  
    // Use 0 for the 1st page, 
    // 1 for the 2nd page, and so on...
}