跳转到主要内容
GET
/
v1
/
video_translate
/
target_languages
获取支持的目标语言列表
curl --request GET \
  --url https://api.keevx.cn/v1/video_translate/target_languages \
  --header 'Authorization: Bearer <token>'
{
  "code": 0,
  "msg": "success",
  "data": [
    "English",
    "Chinese"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.keevx.cn/llms.txt

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

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

响应

语言列表获取成功

支持的语言列表响应

code
integer
必填

状态码

示例:

0

msg
string
必填

响应消息

示例:

"success"

data
string[]
必填

返回支持的语言代码数组

示例:
["English", "Chinese"]