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

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


{
  "call_id": "call_123",
  "transcript": "Hello, this is John. How can I help you today?",
  "timestamp": "2024-01-15T10:30:00Z",
}

Get Transcript

Retrieve the transcript for a call.

Parameters

call_id
string
required
The ID of the call
client_name
string
Optional client name filter. Can be a string or null.

Request Example

# CALL_ID=your_call_id
# API_KEY=your_api_key

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


Response

Success Response (200)

{
  "call_id": "call_123",
  "transcript": "Hello, this is John. How can I help you today?",
  "timestamp": "2024-01-15T10:30:00Z",
}
The response follows the TranscriptResponse schema. Additional fields may be returned depending on implementation.

Validation Error (422)

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