> For the complete documentation index, see [llms.txt](https://developers.docstudio.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.docstudio.com/object-reference/list-response-object.md).

# List response object

This document contains the pagination object used in list responses.

### Used in

<table><thead><tr><th width="321.77783203125">Endpoint / Area</th><th>How it is used</th></tr></thead><tbody><tr><td><a href="/api-reference/dictionaries.md">Dictionaries</a></td><td>Returns dictionary, record, or column value lists</td></tr><tr><td><a href="/api-reference/account-domains.md">Account Domain Endpoints</a></td><td>Returns matching account domains</td></tr><tr><td><a href="/api-reference/check-envelope-status.md">Check Envelope Status</a></td><td>Returns matching envelopes</td></tr></tbody></table>

### Object example

```json
{
  "totalElements": 0,
  "sizeRequested": 25,
  "numberOfElements": 0,
  "data": []
}
```

### Fields

<table><thead><tr><th width="169.22216796875">Field</th><th width="126.444580078125">Type</th><th width="174.111083984375">Required</th><th>Description</th></tr></thead><tbody><tr><td><code>totalElements</code></td><td>integer</td><td>Yes</td><td>Total matching records</td></tr><tr><td><code>sizeRequested</code></td><td>integer</td><td>Yes</td><td>Requested page size</td></tr><tr><td><code>numberOfElements</code></td><td>integer</td><td>Yes</td><td>Records in the current response</td></tr><tr><td><code>data</code></td><td>array</td><td>Yes</td><td>Returned objects</td></tr></tbody></table>

{% hint style="info" %}
The element type in `data` depends on the response schema.
{% endhint %}
