GET
/
transcript
/
{jobId}
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>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

jobId
string
required

The unique identifier of the transcription job.

Response

200 - application/json
Transcription job details.
status
enum<string>

The status of the transcription job.

Available options:
COMPLETED,
IN_QUEUE,
FAILED,
IN_PROGRESS
words
object[] | null

The transcribed words, available only if the job status is COMPLETED.