Alto AI

Get call details

GET
/api/v1/public/calls/{id}

Get full details of a specific call including transcript, recording URL, and cost breakdown. Requires calls:read scope.

AuthorizationBearer <token>

API Key (alto_live_... or alto_test_...)

In: header

Path Parameters

id*string

Call UUID

Response Body

application/json

curl -X GET "https://example.com/api/v1/public/calls/string"
{  "success": true,  "data": {    "callId": "01945a2b-...",    "agentId": "01945a2b-...",    "phoneNumber": "+79001234567",    "status": "completed",    "amdCategory": "machine-vm",    "durationSeconds": 120,    "costKopecks": 4500,    "costBreakdown": {      "llm": 1500,      "tts": 800,      "stt": 700,      "platform": 300,      "postprocess": 200,      "total": 4500    },    "recordingUrl": "https://cdn.alto.ai/...?signature=...",    "transcript": "Полный текст разговора...",    "transcriptTruncated": false  }}
Empty
Empty
Empty
Empty
Empty