# 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](https://docs.getdor.com/dtm-docs/dtm-api/pagination) the response.

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

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

{% endtab %}
{% endtabs %}

<br>
