{ "success": true, "calls": [ { "call_id": "<string>", "voice_agent_id": "<string>", "agent_id": "<string>", "organization_id": "<string>", "user_id": "<string>", "tenant_id": "<string>", "start_timestamp": 123, "end_timestamp": 123, "call_status": "<string>", "direction": "<string>", "user_sentiment": "<string>", "call_successful": true, "in_voicemail": true, "recording_url": "<string>", "recording_s3_key": "<string>", "recording_downloaded_at": {}, "call_started_at": {}, "call_ended_at": {}, "call_analyzed_at": {}, "created_at": {}, "updated_at": {} } ], "count": 123, "powered_by": "<string>" }
List call history from your organization
ended
ongoing
error
inbound
outbound
Show Call Object
Positive
Negative
Neutral
Unknown
curl -X GET "https://api.teli.ai/v1/voice/calls?organization_id=1762896364768x389173798861431550&user_id=1763661807373x532913854895880007&is_admin=false&limit=50" \ -H "X-API-Key: YOUR_API_KEY"
{ "success": true, "count": 1, "calls": [ { "call_id": "call_d35fab7c6bd8cf9aee6c322b7a4", "voice_agent_id": "agent_86f826bf8f59bacd5c10ae948a", "agent_id": "74014854-b110-46c8-b037-18f0149baae6", "organization_id": "4d051118-c116-4923-8ff4-1a9761115fec", "user_id": "0cf76f73-a751-4f65-b7bf-37f6cd5fdced", "tenant_id": "your_tenant", "start_timestamp": 1763660353696, "end_timestamp": 1763660479604, "call_status": "ended", "direction": "outbound", "user_sentiment": "Neutral", "call_successful": false, "in_voicemail": true, "recording_url": "https://teli-voice-recordings-prod.s3.us-west-2.amazonaws.com/recordings/call_d35fab7c6bd8cf9aee6c322b7a4.wav", "recording_s3_key": "recordings/call_d35fab7c6bd8cf9aee6c322b7a4.wav", "recording_downloaded_at": "2025-11-20T17:42:25.742336", "call_started_at": "2025-11-20T19:45:03.200769", "call_ended_at": "2025-11-20T19:45:02.560947", "call_analyzed_at": "2025-11-20T19:45:03.520027", "created_at": "2025-11-20T17:41:24.234773", "updated_at": "2025-11-20T19:45:03.621498" } ], "powered_by": "Teli" }
{ "error": "organization_id required", "success": false, "powered_by": "Teli" }
{ "error": "Failed to list calls", "success": false, "powered_by": "Teli" }
GET /v1/voice/calls/{call_id}