Skip to main content
GET
/
v1
/
external
/
voice-file
/
jobs
/
{jobId}
/
translations
/
{locale}
Get Translation
curl --request GET \
  --url https://api.tiro.ooo/v1/external/voice-file/jobs/{jobId}/translations/{locale} \
  --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

locale
string
required

Target locale code (e.g., ko_KR, en_US, ja_JP)

Response

Translation data

jobId
string
required

Associated job identifier

Example:

"job-abc123"

locale
string
required

Translation locale

Example:

"ko_KR"

text
string
required

Translated text

Example:

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