Skip to main content
GET
/
call
/
{call_id}
cURL
curl --request GET \
  --url https://api.samora.ai/v1/call/{call_id} \
  --header 'X-API-Key: <api-key>'
{
  "message": "Call details fetched successfully",
  "data": {
    "agent_id": "123e4567-e89b-12d3-a456-426614174000",
    "created_at": "2024-01-15T10:30:00Z",
    "updated_at": "2024-01-15T10:35:00Z",
    "started_at": "2024-01-15T10:30:05Z",
    "ended_at": "2024-01-15T10:35:30Z",
    "transcript_url": "https://s3.amazonaws.com/bucket/transcript.pdf?X-Amz-Algorithm=...",
    "recording_url": "https://s3.amazonaws.com/bucket/recording.mp3?X-Amz-Algorithm=...",
    "status": "CALL_FINISHED",
    "call_variables": {
      "name": "John Doe",
      "email": "john.doe@example.com",
      "customer_id": "CUST-001"
    }
  }
}

Authorizations

X-API-Key
string
header
required

Your unique organization API key. Required on all requests.

Path Parameters

call_id
string<uuid>
required

The UUID of the call to retrieve. Returned as call_id from the Trigger call endpoint.

Response

Call details

message
string
required

Human-readable status message.

data
object
required