v2

latestOpenAPI 3.0.02026-07-26365590.3 KB
Calls

Get call transcription

Returns the transcription for a call. Returns 404 if the call is in a workspace outside the API key scope.

get/v1/calls/{id}/transcription

Path parameters

idstring required

Response

The call transcription

idstring required

Unique identifier of the transcription

status'PENDING' | 'IN_PROGRESS' | 'FAILED' | 'COMPLETED' required

Status of the transcription

summarystring nullable required

AI-generated summary of the conversation

startedAtstring date-time nullable required

When transcription processing started

endedAtstring date-time nullable required

When transcription processing completed

Example response

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "COMPLETED",
  "transcript": [
    {
      "text": "Hello, this is John from...",
      "start": 0.5,
      "end": 3.2,
      "confidence": 0.95
    }
  ],
  "summary": "Discussion about product features...",
  "startedAt": "2024-01-15T10:00:00Z",
  "endedAt": "2024-01-15T10:00:45Z"
}