Pagination of return list

The API employs pagination for its list of resources.

These resources typically return a page's object in their responses, which contain pagination links that clients can use to navigate through the data seamlessly without the need to construct a query. The pages field employs link relations, which are listed below.

The page size is set to 50 items.

Here's an example of the structure:

{
  data: [],
  metadata: {
    page:
    pages:
    count:
    items:
  }
} 
ParameterDescription
page:Сurrent page
pages:Total number of pages
count:Total number of items
items:Number of items on this page (50 for all pages except last. For last 1-50)