Translate

AI Translation Configuration

0calls
Free

Retrieve the full list of languages, translation styles, context scenarios, and performance metrics supported by the AI translation service.

GET
uapis.cn
/api/v1/ai/translate/languages

Response

200 / OK

Successfully retrieved AI translation configuration.

JSON
{
  "message": "Supported languages retrieved successfully",
  "data": {
    "languages": [
      {
        "code": "zh",
        "name": "Chinese (Simplified)",
        "native": "Chinese (Simplified)"
      }
    ],
    "styles": [
      {
        "code": "professional",
        "name": "Professional",
        "description": "Formal, business-appropriate style"
      }
    ],
    "contexts": [
      {
        "code": "business",
        "name": "Business",
        "description": "Business and corporate content"
      }
    ]
  },
  "performance": {
    "batch_translation_available": true,
    "max_batch_size": 50,
    "max_text_length": 10000
  }
}