Skip to main content
POST
/
openapi
/
v1
/
task
/
translate
/
create
Create text translation (sync)
curl --request POST \
  --url https://api.vmeg.ai/openapi/v1/task/translate/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Idempotency-Key: <x-idempotency-key>' \
  --data '
{
  "language": {
    "source": "zh-CN",
    "target": "en-US"
  },
  "segments": [
    {
      "text": "<string>",
      "gender": "male",
      "speaker": "Speaker A",
      "locale": "zh-CN",
      "context": [
        "<string>"
      ],
      "start": 123,
      "end": 123
    }
  ],
  "options": {
    "sourceContext": {
      "mode": "independent",
      "contextWindow": 5
    },
    "sceneCustomized": {
      "scene": "video",
      "allowStutter": true
    },
    "glossary": {},
    "prompt": "<string>",
    "skipMissingTranslationCheck": false
  }
}
'
{
  "code": 200,
  "message": "",
  "data": {
    "taskId": "<string>",
    "items": [
      {
        "text": "<string>",
        "errorMessage": "<string>"
      }
    ],
    "createdAt": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vmeg.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API Key in the Authorization header (Bearer <api_key>). See Authentication.

Headers

X-Idempotency-Key
string
required

Required on mutating POST requests that create tasks or change persisted data (max 64 characters). See Idempotency.

Maximum string length: 64

Body

application/json
language
object
required

Source and target locales for translation

segments
object[]
required

Text segments to translate (max 50)

Maximum array length: 50
options
object

Optional translation settings (context, scene, glossary, prompt)

Response

200 - application/json

Success

code
integer
required

Business code; 200 means success

Example:

200

message
string

Human-readable detail when code is not success

Example:

""

data
object

Translated segments returned in the synchronous HTTP response.