메인 콘텐츠로 건너뛰기
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": "b2d1ab32-3fe2-4201-b0b4-391abdbaa023",
    "locale": "ko_KR",
    "text": "안녕하세요 여러분 ..."
  }
]

인증

Authorization
string
header
필수

API key in format {id}.{secret}

경로 매개변수

jobId
string
필수

The job ID returned from Create Voice File Job

응답

List of translations

jobId
string
필수

Associated job identifier

예시:

"b2d1ab32-3fe2-4201-b0b4-391abdbaa023"

locale
string
필수

Translation locale

예시:

"ko_KR"

text
string
필수

Translated text

예시:

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