API requests that return collections of records are always paginated. The default page size of 200 records can be adjusted by setting the per_page parameter. The maximum number of records per page is 500.

Data collections also return navigation notes in the footer, allowing you to understand where you are on the list of items:

{

"data": [
            {
            "item"=1
            },
    
            ...
    
            {
            "item"=200
            }

        "total": 380,
        "per_page": 200,
        "page": 1,
        "pages": 2
        ]
}

In the list, each line has the following meaning:

total – number of items in all lists.

per_page – this many items are shown on each page.

page – the current page.

pages – total pages count.

Order

Collections of data can also be ordered by one or several parameters and arranged in descending or ascending order. Both functions are defined by the order parameter.

order="parameter.desc"