> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vozagent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Call

> Retrieve a single call by ID.

<Note>
  Retrieve your API Key from your [VozAgent Dashboard](https://app.vozagent.ai/settings/api).
</Note>

## Path parameters

<ParamField path="id" type="string" required>
  The unique identifier of the call to retrieve.
</ParamField>

## Response

Returns the full call record including transcript, analysis, and recording URL.

<ResponseField name="transcript" type="string">
  Full conversation transcript.
</ResponseField>

<ResponseField name="analysis_summary" type="string">
  AI-generated summary of the call.
</ResponseField>

<ResponseField name="call_intent" type="string">
  Detected intent: `new_quote`, `follow_up`, `schedule`, etc.
</ResponseField>

<ResponseField name="recording_url" type="string">
  URL to the call recording (if available).
</ResponseField>

<ResponseField name="cost" type="number">
  Call cost in USD.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl https://api.vozagent.ai/v1/calls/call-a1b2c3d4... \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "call-a1b2c3d4-e5f6-a7b8-c9d0",
    "contact_id": "c1a2b3c4-d5e6-f7a8-b9c0",
    "assistant_id": "a1b2c3d4-e5f6-a7b8",
    "call_type": "inbound",
    "call_status": "completed",
    "duration_seconds": 180,
    "call_started_at": "2024-01-15T10:30:00Z",
    "call_ended_at": "2024-01-15T10:33:00Z",
    "customer_phone_number": "+15551234567",
    "assistant_phone_number": "+15559876543",
    "transcript": "Assistant: Hello! Thanks for calling Acme Outdoor Living. How can I help you today?\nCustomer: Hi, I'm interested in getting a quote for a new patio...",
    "analysis_summary": "Customer inquired about patio installation for backyard renovation project",
    "call_intent": "new_quote",
    "lead_qualification": "hot",
    "appointment_booked": true,
    "recording_url": "https://storage.vozagent.ai/recordings/call-a1b2c3d4.mp3",
    "cost": 0.15
  }
  ```
</ResponseExample>
