> **Documentation Index:** Fetch the complete configuration index at https://yandex.com/dev/distribution/doc/dg-v2/en/llms.txt

# Additional parameters

## Paginated output {#paginate}

To generate a paginated report, specify `"paginate": true` in the request body. By default, the value is `false`.

The response will include the total number of pages and the current page:

```json
{
  "current_page": 2,
  "max_page": 150
}
```

To request a specific page, specify it in the request body:

```json
{
  "paginate": true,
  "page": <page number>
}
```

Within one page, the report will contain 100 lines (or less if it's the last page). If you omit `paginate`, you will get a full unpaginated report. The parameters `current_page` and `max_page` will be `null`.

