跳至主要內容

接口调用

Kevin小于 1 分钟

接口地址:

https://api.deeplx.org/translate

接口参数

text: 待翻译的文字
source_lang: 你当前提交的文字语言(可设置为"auto"自动识别)
target_lang: 你欲要翻译为的语言

调用示例:

Curl
curl --location 'https://api.deeplx.org/translate' \
--header 'Content-Type: application/json' \
--data '{
    "text": "Hello, world!",
    "source_lang": "EN",
    "target_lang": "ZH"
}'