QQ翻译

GET
https://api.mymzf.com/api/qqfy

接口描述

多语言翻译服务,支持文本、单词等内容的快速互译,覆盖多种常用语种,兼顾翻译准确性与响应速度,适配日常沟通、学习办公等多元场景需求。

请求参数

请求示例

var axios = require('axios')

var config = {
  method: 'get',
  url: 'https://api.mymzf.com/api/qqfy/api?type=json&msg=你好我叫小微'
}

axios(config)
  .then(function (response) {
    console.log(JSON.stringify(response.data))
  })
  .catch(function (error) {
    console.log(error)
  })

返回示例

{
  "code": 1,
  "text": "Hello, my name is Xiao Wei.",
  "time": "2026-01-10 21:31:18",
  "timestamp": 1768051878,
  "exec_time": "382ms",
  "request_id": "1bd1d921e68d0a217207379d"
}