v1
latestOpenAPI 3.0.0Proprietary2026-07-26316155742.7 KBFile translations
File processing metadata
Allows the fetching of metadata from the processing file. The completed file can be downloaded using the File download endpoint.
get/v1/fileTranslations/{uid}
Path parameters
uidstring required
UID of the operation. See File translations endpoint.
Response
Returns metadata of previously created translation request by requests unique identifier.
Example response
{
"uid": "random-uid",
"actions": [
{
"actionType": "MT_GENERIC_PRETRANSLATE",
"results": [
{
"id": "random-uid",
"sourceLang": "en",
"targetLang": "cs",
"status": "OK"
}
]
}
],
"metadata": {
"sourceLang": {
"code": "cs"
},
"targetLangs": [
{
"code": "cs"
}
],
"actionTypes": [
"MT_GENERIC_PRETRANSLATE"
],
"mtSettings": {
"usePhraseMTSettings": true,
"profile": {
"uid": "CFUki8ptanoz1WAIYoXSH4"
}
},
"transMemoriesConfig": [
{
"targetLang": {
"code": "cs"
},
"transMemories": [
{
"tmSourceLocale": {
"code": "cs"
},
"tmTargetLocale": {
"code": "cs"
}
}
]
}
]
}
}