翻译

AI翻译配置

0次调用
免费接口

获取AI智能翻译服务支持的完整语言列表、翻译风格选项、上下文场景选项以及性能指标信息。

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

响应

200 / 请求成功

成功获取AI翻译配置信息

JSON
{
  "message": "Supported languages retrieved successfully",
  "data": {
    "languages": [
      {
        "code": "zh",
        "name": "Chinese (Simplified)",
        "native": "中文(简体)"
      }
    ],
    "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
  }
}