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

# Get Call

> Retrieve full details of a specific Famulor call by ID via API, including transcript, recording URL, duration, status and metadata from the AI voice assistant.

This endpoint allows you to retrieve detailed information about a specific call that belongs to the authenticated user.

### Path Parameters

<ParamField path="id" type="integer" required>
  The unique identifier of the call
</ParamField>

### Response Fields

<ResponseField name="id" type="integer">
  The unique identifier of the call
</ResponseField>

<ResponseField name="assistant_name" type="string">
  The name of the assistant that handled the call
</ResponseField>

<ResponseField name="campaign_name" type="string">
  The name of the campaign this call belongs to (if applicable)
</ResponseField>

<ResponseField name="type" type="string">
  The type of call (inbound, outbound or web)
</ResponseField>

<ResponseField name="duration" type="integer">
  The duration of the call in seconds
</ResponseField>

<ResponseField name="assistant_phone_number" type="string">
  The phone number used by the assistant
</ResponseField>

<ResponseField name="client_phone_number" type="string">
  The customer's phone number
</ResponseField>

<ResponseField name="status" type="string">
  The current status of the call
</ResponseField>

<ResponseField name="transcript" type="array">
  The transcript of the call conversation as an array of entries
</ResponseField>

<ResponseField name="variables" type="object">
  Variables collected during the call
</ResponseField>

<ResponseField name="evaluation" type="array">
  Evaluation data for call performance as an array of fields
</ResponseField>

<ResponseField name="webhook_response" type="object">
  Response from configured webhooks
</ResponseField>

<ResponseField name="carrier_cost" type="string">
  The carrier-calculated costs for this call
</ResponseField>

<ResponseField name="total_cost" type="string">
  The total cost of the call including all fees
</ResponseField>

<ResponseField name="answered_by" type="string">
  Who answered the call (human, machine or unknown), or `null`
</ResponseField>

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

<ResponseField name="created_at" type="string">
  Date and time the call was created
</ResponseField>

<ResponseField name="updated_at" type="string">
  Date and time the call was last updated
</ResponseField>

<ResponseExample>
  ```json 200 Response theme={null} theme={null}
  {
    "id": 123,
    "assistant_name": "Sales Assistant",
    "campaign_name": "Q4 Outreach Campaign",
    "type": "outbound",
    "duration": 245,
    "assistant_phone_number": "+1234567890",
    "client_phone_number": "+1987654321",
    "status": "completed",
    "transcript": [
      {
        "text": "Hello, this is Sarah from Famulor. How are you doing today?",
        "type": "transcript",
        "sender": "bot",
        "timestamp": 1754055268.525861
      }
    ],
    "variables": [],
    "evaluation": [
      {
        "name": "status",
        "type": "string",
        "value": "qualified_lead",
        "description": "Outcome of the call"
      }
    ],
    "webhook_response": {
      "status": "success",
      "data": {
        "crm_contact_id": "abc123"
      }
    },
    "carrier_cost": "0.02000000",
    "total_cost": "0.02500000",
    "answered_by": null,
    "recording_url": "https://app.famulor.de/media/public/123/call_+491234567890_example.mp4",
    "created_at": "2025-08-04 14:30:00",
    "updated_at": "2025-08-04 14:34:05"
  }
  ```

  ```json 404 Response theme={null} theme={null}
  {
    "message": "Call not found"
  }
  ```
</ResponseExample>

<Tip>
  Related pages: [Introduction](/en/api-reference/introduction) and [Authentication Guide](/en/developers/authentication-guide), and [API Integration Examples](/en/developers/api-integration-examples).
</Tip>
