维梦API - 提供免费接口调用平台
该API已经过安全认证,请放心使用
AI · 翻译
AI大模型在线翻译接口(适合长文翻译让语句更通顺)

接口地址: https://api.52vmy.cn/api/ai/fanyi

返回格式: JSON

请求方式: GET

请求示例: https://api.52vmy.cn/api/ai/fanyi?msg=You don’t have to love your job. Jobs are a way to make money. Many people live fine lives in okay jobs by using the money they make on things they care about.

接口定制: 点此加入用户群

默认QPS: 每10秒不得超过1次 携带Token可无视限制

请求参数说明:

名称 必填 类型 说明
msg string 关键词
type string 返回格式默认JSON可选text

返回参数说明:

名称 类型 说明

返回示例:

自行测试.

PHP代码示例:

$msg = $_GET["msg"];
$type = $_GET["type"];
$url = "https://api.52vmy.cn/api/ai/fanyi?msg=".$msg."&type=".$type;
echo file_get_contents($url);