pagination

API Docs by APIMATIC

Pagination

Wavix uses pagination of the results retuned in response to your requests to make sure responses are lightweight and easier to handle.

Fields

NameDescription
total Required
Number

Total number of records returned in the response.

total_pages Required
Number

Total number of pages in the response.

current_page Required
Number

Index of current page.

per_page Required
Number

Number of records per page.

{
  "total": 1000,
  "total_pages": 10,
  "current_page": 2,
  "per_page": 100
}