GET
/
api
/
v1
/
reports
/
overview
/
charts
Overview Charts
curl --request GET \
  --url http://localhost:8080/api/v1/reports/overview/charts \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": {
    "new_conversations": [
      {
        "date": "2025-08-19",
        "count": 16
      }
    ],
    "resolved_conversations": [
      {
        "date": "2023-12-25",
        "count": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Basic authentication using base64 encoded API key and secret. Format: Authorization: Basic <base64(api_key:api_secret)>

Query Parameters

days
integer
default:30

Number of days to include in the report

Response

200
application/json

Charts overview report retrieved successfully

The response is of type object.