Skip to main content
GET
/
api
/
user
/
calls
/
{id}
Get Call
curl --request GET \
  --url https://app.famulor.de/api/user/calls/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}
This endpoint allows you to retrieve detailed information about a specific call that belongs to the authenticated user.

Path Parameters

id
integer
required
The unique identifier of the call

Response Fields

id
integer
The unique identifier of the call
assistant_name
string
The name of the assistant that handled the call
campaign_name
string
The name of the campaign this call belongs to (if applicable)
type
string
The type of call (inbound, outbound or web)
duration
integer
The duration of the call in seconds
assistant_phone_number
string
The phone number used by the assistant
client_phone_number
string
The customer’s phone number
status
string
The current status of the call
transcript
array
The transcript of the call conversation as an array of entries
variables
object
Variables collected during the call
evaluation
array
Evaluation data for call performance as an array of fields
webhook_response
object
Response from configured webhooks
carrier_cost
string
The carrier-calculated costs for this call
total_cost
string
The total cost of the call including all fees
answered_by
string
Who answered the call (human, machine or unknown), or null
recording_url
string
URL to the call recording (if available and enabled)
created_at
string
Date and time the call was created
updated_at
string
Date and time the call was last updated
{
  "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"
}