Pagination

Unless otherwise specified, all API requesting lists will be paginated with the following format:

{
    "models": [ "<json objects>" ],
    "current_page": "<current page>",
    "total_pages": "<number of pages>"
}

The default number of items returned is 20. To get more, you can specify parameter limit. For example GET /trades?limit=100. Note that the maximum number of items we can return at a time is 1000.

Last updated