Skip to main content

Get Transcript

Retrieve the transcript for a call. Authentication: Requires X-API-Key header

Request Example

curl -X GET 'https://api.vaaniresearch.com/api/transcript/call_123?client_name=my-client' \
  -H 'X-API-Key: YOUR_API_KEY'

Response

Success Response (200)

Returns a JSON object containing call transcript data. The exact structure may vary based on the implementation.
{
  "call_id": "call_123",
  "transcript": "Hello, this is John. How can I help you today?",
  "timestamp": "2024-01-15T10:30:00Z",
  "client_name": "my-client"
}
The response structure follows the TranscriptResponse schema, which is an object with additional properties. The exact fields may vary based on your implementation.

Validation Error Response (422)

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