Skip to main content
GET
/
v1
/
external
/
voice-file
/
jobs
/
{jobId}
/
transcript
Get Transcript
curl --request GET \
  --url https://api.tiro.ooo/v1/external/voice-file/jobs/{jobId}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "jobId": "job-abc123",
  "locales": [
    "en_US"
  ],
  "text": "Hello everyone, welcome to today's meeting..."
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Path Parameters

jobId
string
required

The job ID returned from Create Voice File Job

Example:

"job-abc123"

Response

Transcript data

jobId
string
required

Associated job identifier

Example:

"job-abc123"

locales
string[]
required

Locales used for transcription

Example:
["en_US"]
text
string
required

Transcribed text

Example:

"Hello everyone ..."