Pagination

All of the list API endpoints, such as GET /jobs will include information about the pagination in the response data.

List API endpoints return up to 50 results per page.

You can fetch the next page of results by including a query string parameter ?page=x with x being the page you want to get next.

Paginated responses all return the data structure seen below.

Example Response
{ "status": "ok", "code": 200, "data": { "pagination": { "currentPage": 1, "from": 1, "lastPage": 3, "perPage": 50, "hasMore": true, "nextPage": 2, "nextPageUrl": "https://us-01.api.prestavi.com/users?page=2", "to": 50, "total": 140 } } }