> For the complete documentation index, see [llms.txt](https://docs.junkipedia.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.junkipedia.org/reference-material/api/query-string-parameters/pagination.md).

# Pagination

The following API entry points provide the ability to selectively return paginated portions of search results:

* GET /posts
* GET /posts/stats

With each of these endpoints, two parameters work together to select a portion of results to be returned:

* **per\_page** – defines a maximum number of results to be returned as one page
* **page** – specifies which page of results to be returned

For instance, let's assume that a given request would return 50 results. If we define ten results per page and request page two, only results 11 through 20 will be returned.

* GET /posts?per\_page=10\&page=2
