Skip to main content
GET
/
v1
/
external
/
voice-file
/
jobs
/
{jobId}
/
translations
List Translations
curl --request GET \
  --url https://api.tiro.ooo/v1/external/voice-file/jobs/{jobId}/translations \
  --header 'Authorization: Bearer <token>'
[
  {
    "jobId": "job-abc123",
    "locale": "ko_KR",
    "text": "안녕하세요 여러분 ..."
  }
]

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

Response

List of translations

jobId
string
required

Associated job identifier

Example:

"job-abc123"

locale
string
required

Translation locale

Example:

"ko_KR"

text
string
required

Translated text

Example:

"안녕하세요 여러분 ..."