Authorizations
API Key authentication. Pass your API key in the Authorization header.
Headers
API Key
Database URL - unique account identifier
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
}
}
}
Retrieve comprehensive dashboard analytics including call statistics, costs, and performance metrics
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
}
}
}
API Key authentication. Pass your API key in the Authorization header.
API Key
Database URL - unique account identifier