> For the complete documentation index, see [llms.txt](https://docs.getdor.com/dtm-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.getdor.com/dtm-docs/dtm-api/response-format/successful-responses.md).

# Successful Responses

All API endpoints respond in a standard JSON response format for 2xx range HTTP responses. The root response object is split into two keys, `data` and `meta`.

The `data` key will contain an array of objects for plural endpoints or a single object for singular endpoints.

The `meta` key will contain information related to your request including any information required for [paginating](/dtm-docs/dtm-api/pagination.md) the response.

{% tabs %}
{% tab title="Response" %}

```json
{
  "data": [
    {...},
    {...}
  ],
  "meta": {
    ...
  }
}
```

{% endtab %}
{% endtabs %}

<br>
