Cut.ProDocs
Transcriptions

Get the transcript as JSON

Returns the transcript as timed cues, ready to render or index without parsing a subtitle file. Timings are in seconds from the start of the audio.

speaker is only ever filled when the job was billed with speaker_labels; on every other job it is null.

Returns 404 TRANSCRIPTION_NOT_READY while the worker is still running.

X-Api-Key<token>

In: header

Path Parameters

transcriptionId*string

Response Body

application/json

application/json

GET
/transcriptions/{transcriptionId}/transcript
curl -X GET "https://example.com/transcriptions/string/transcript"
{  "language": "string",  "speaker_labels": true,  "cues": [    {      "start": 0,      "end": 0,      "text": "string",      "speaker": "string"    }  ]}