Pagination

Prev Next

When the outcome of a query consists of many results, pagination can break these results into chunks that are easier to navigate and parse.

Define the number of pages for viewing.

page=1

Define the number of jobs per page.

count=2500

Example: The following will show 2500 jobs from the 1st page

jobs&page=1&count=2500

Example: The following will define 1000 jobs per page in 10 pages

jobs&page=10&count=1000