Skip to main content
GET
/
api
/
call_details
/
{call_id}
# CALL_ID=your_call_id
# API_KEY=your_api_key

curl -H "X-API-Key:vaani_3916d7d1d8736c2883582d8ab005be31" https://api.vaaniresearch.com/api/call_details/{call_id}


{
  "call_id": "call_123",
  "transcript": "Full conversation transcript...",
  "entities": {
    "customer_name": "John Doe",
    "phone_number": "+919876543210",
    "email": "[email protected]"
  },
  "evaluation": {
    "score": 85,
    "sentiment": "positive",
    "key_points": [
      "Customer inquiry about product",
      "Price discussion",
      "Follow-up scheduled"
    ]
  },
  "timestamp": "2024-01-15T10:30:00Z",
  "duration": 300,
  "status": "completed"
}

Get Call Details

Get detailed call information including transcript, entities, and evaluation.

Parameters

client
string
required
The client name
call_id
string
required
The ID of the call

Request Example

# CALL_ID=your_call_id
# API_KEY=your_api_key

curl -H "X-API-Key:vaani_3916d7d1d8736c2883582d8ab005be31" https://api.vaaniresearch.com/api/call_details/{call_id}


Response

Success Response (200)

{
  "call_id": "call_123",
  "transcript": "Full conversation transcript...",
  "entities": {
    "customer_name": "John Doe",
    "phone_number": "+919876543210",
    "email": "[email protected]"
  },
  "evaluation": {
    "score": 85,
    "sentiment": "positive",
    "key_points": [
      "Customer inquiry about product",
      "Price discussion",
      "Follow-up scheduled"
    ]
  },
  "timestamp": "2024-01-15T10:30:00Z",
  "duration": 300,
  "status": "completed"
}
call_id
string
The ID of the call
transcript
string
Full conversation transcript
entities
object
Extracted entities from the call
evaluation
object
Call evaluation data
The response follows the CallDetailsResponse schema. Additional fields may be returned depending on implementation.

Validation Error (422)

{
  "detail": [
    {
      "loc": ["body"],
      "msg": "field required",
      "type": "value_error.missing"
    },
    {
      "loc": ["path", "call_id"],
      "msg": "field required",
      "type": "value_error.missing"
    }
  ]
}
detail
array
Array of validation error objects