Pagination

Some GET requests will return the desired data in an array along with pagination information. We will return 100 objects per page. If the result set has more than 100 objects the pages value in the pagination object will indicate how many pages there are as well as a value for the next page.

Here is an example of the pagination object:

"pagination": {
        "current": 1,
        "previous": null,
        "next": null,
        "per_page": 100,
        "pages": 1,
        "count": 2,
        "prev_page_path": null,
        "next_page_path": null
    }