GET
/
api
/
v1
/
dashboard
Get Dashboard Data
curl --request GET \
  --url https://api.vodex.ai/api/v1/dashboard \
  --header 'Authorization: <api-key>' \
  --header 'dburl: <dburl>'
{
  "status": 123,
  "data": {
    "totalDuration": 123,
    "totalCost": "<string>",
    "balance": "<string>",
    "onHoldBalance": "<string>",
    "remainingMinutes": 123,
    "totalCallsMade": 123,
    "callStatus": {
      "totalFailed": 123,
      "totalEnded": 123,
      "undefined": 123,
      "totalConnected": 123
    }
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Pass your API key in the Authorization header.

Headers

Authorization
string
required

API Key

dburl
string
required

Database URL - unique account identifier

Response

200
application/json

Success

The response is of type object.