Pagination

Dealing with requests that contains pagination.

There are two parameters to send as query string to navigate through pages:

  • page (default 1)
  • limit (a default number of results will be returned based on each application)

Below is a return demonstration:

{
  "data" : {
    "key": "value"
  },
  "pagination": {
    "current": 1,
    "items": 100,
    "pages": 10
  }
}