cURL
curl --request GET \ --url https://api.autocaption.io/v1/transcript/{jobId} \ --header 'x-api-key: <api-key>'
{ "status": "COMPLETED", "words": [ { "start": 123, "end": 123, "word": "<string>", "punctuated_word": "<string>" } ] }
Retrieves the result of a transcription job by its ID. Words are only included if the job status is COMPLETED.
The unique identifier of the transcription job.
Transcription job details.
The status of the transcription job.
COMPLETED
IN_QUEUE
FAILED
IN_PROGRESS
The transcribed words, available only if the job status is COMPLETED.
Show child attributes