Skip to main content
GET
/
api
/
v1
/
agent
/
dashboard
Get Agent Dashboard Statistics
curl --request GET \
  --url https://dev.voice.ai/api/v1/agent/dashboard \
  --header 'Authorization: Bearer <token>'
{
  "number_of_calls": 123,
  "average_duration": 123,
  "total_credits_used": 123,
  "avg_credits_per_call": 123,
  "daily_stats": [
    {
      "date": "<string>",
      "total_calls": 123,
      "total_credits": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use your API key as the bearer token. Format: Authorization: Bearer

Response

Successful Response

number_of_calls
integer
required
average_duration
number
required
total_credits_used
number
required
avg_credits_per_call
number
required
daily_stats
DailyStat · object[]
required