v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Voice File

Get Transcript

Retrieve the transcribed text from a completed Voice File Job.

  • Job status must be COMPLETED
  • Returns the full transcript text and detected locales

Documentation: How to retrieve results

get/v1/external/voice-file/jobs/{jobId}/transcript

Path parameters

jobIdstring required
Example:b2d1ab32-3fe2-4201-b0b4-391abdbaa023

The job ID returned from Create Voice File Job

Response

Transcript data

jobIdstring required

Associated job identifier

localesstring[] required

Locales used for transcription

textstring required

Transcribed text

Example response

{
  "jobId": "b2d1ab32-3fe2-4201-b0b4-391abdbaa023",
  "locales": [
    "en_US"
  ],
  "text": "Hello everyone ...",
  "segments": [
    {
      "startTimeMillis": 1200,
      "endTimeMillis": 3480,
      "text": "Hello everyone.",
      "speakerLabel": "speaker-1"
    }
  ]
}