For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

Last updated