> For the complete documentation index, see [llms.txt](https://developer.all-images.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.all-images.ai/all-images.ai-api/pagination.md).

# Pagination

Some methods have `limit` and `offset` params in request body. You can create pagination system with them.&#x20;

In response, these methods return a `filteredResults` property corresponding to the total number of elements available and an array of the page's elements.

```json
{
  "filteredResults": 479,
  "images": [
    {
      "id": "65921cb1-111d-4cca-a554-809b61f842b4",
      "url": "http://api.all-images.ai/v1/images/preview/65921cb1-111d-4cca-a554-809b61f842b4.jpg",
    },
    ...
  ]
}
```
