Pagination
- 27 Jun 2024
- 1 Minute to read
- Print
- DarkLight
Pagination
- Updated on 27 Jun 2024
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
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
Was this article helpful?