Calls

Get Call

Get a specific call by its internal ID.

GET
/calls/{call_id}
AuthorizationBearer <token>

API key authentication. Use format: Bearer kejue_...

In: header

Path Parameters

call_idstring

Internal Call ID

Response Body

application/json

curl -X GET "https://api.kejue.co/api/v1/calls/string"
{
  "id": 12345,
  "business_id": "biz_769b419",
  "lead_id": 54321,
  "call_type": "outbound",
  "started_at": "2023-10-27T10:00:00Z",
  "ended_at": "2023-10-27T10:05:00Z",
  "duration": 300,
  "call_success": "Good",
  "language": "english",
  "summary": "Customer was interested in the product.",
  "transcript": "Agent: Hello... Customer: Hi...",
  "recording_url": "https://api.vapi.ai/recordings/...",
  "assistant_id": "provider-assistant-id-123",
  "call_source": "api",
  "call_ended_reason": "customer-ended-call",
  "campaign_id": "camp_123",
  "status": "completed",
  "created_at": "2023-10-27T10:00:00Z",
  "updated_at": "2023-10-27T10:05:00Z",
  "total_cost": "0.50",
  "cost_per_minute": "0.10"
}
Empty
Empty

Last updated on