> ## Documentation Index
> Fetch the complete documentation index at: https://developer.dashsocial.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Deprecation: SINGLE_METRIC Report Type

> The SINGLE_METRIC value for report_type is being deprecated. Replace with TOTAL_METRIC before June 30, 2026.

<Warning>
  **Breaking Change — Effective June 30, 2026.** Requests using `report_type=SINGLE_METRIC` will return a `400` error after this date.
</Warning>

The `SINGLE_METRIC` value for the `report_type` parameter is being deprecated and will be removed from the Dashboard Reports API.

* **Endpoint:** `GET https://dashboard.dashsocial.com/reports/data`
* **Action Required:** Replace with `TOTAL_METRIC`

## Required action

Update your API calls to use:

```
report_type=TOTAL_METRIC
```

If your query does not include the `report_type` parameter, add `report_type=TOTAL_METRIC` to your request.

There are no changes to the response structure or returned data. This is a direct parameter replacement.

## Example

**Before:**

```
GET https://dashboard.dashsocial.com/reports/data?...&report_type=SINGLE_METRIC
```

**After:**

```
GET https://dashboard.dashsocial.com/reports/data?...&report_type=TOTAL_METRIC
```
