| Header名称 | 默认值 | 必填 | 说明 |
|---|---|---|---|
X-API-Key |
你的API密钥
|
是 | 逗号APIKEY,用户后台首页获取 |
Content-Type |
application/json
|
是 | 请求内容类型 |
| 参数名 | 默认值 | 必填 | 说明 |
|---|---|---|---|
api_id |
52 |
是 | API接口ID,系统默认 |
endpoint_id |
ep_ad9f5dd7c316e3a3bcf1bf17dff0b703 |
是 | 端点ID,系统默认 |
method |
POST |
是 | 请求方式,可选值:GET |
| 参数名 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
char |
string | 是 | 要查询的单个汉字,如:好、学、字等 | |
| 参数名 | 类型 | 说明 | 示例 |
|---|---|---|---|
code |
integer | 状态码,200表示成功 | |
messag |
string | 状态信息 | |
data.character |
string | 查询的汉字 | |
data.pronunciation |
string | 读音(拼音和注音),多音字用换行分隔 | |
data.pronunciations_list |
string | 所有读音列表(拼音),逗号分隔 | |
data.radical |
string | 部首 | |
data.strokes |
string | 总笔画数 | |
data.wuxing |
string | 五行属性 | |
data.structure |
string | 结构(左右结构、上下结构等) | |
data.traditional |
string | 繁体字写法 | |
data.traditional_strokes |
string | 繁体字笔画数 | |
data.kangxi_strokes |
string | 康熙字典笔画数 | |
data.unicode |
string | Unicode编码 | |
data.stroke_order |
string | 笔顺 | |
data.definitions |
array | 基本解释列表,多音字用[读音]标注 | |
data.words |
array | 常用组词列表 | |
data.idioms |
array | 相关成语列表 | |
data.homophones |
array | 同音字列表 | |
data.same_radical_chars |
array | 同部首字列表 | |
data.same_wuxing_chars |
array | 同五行字列表 | |
{"code":200,"message":"成功","data":{"char":"汉","pronunciation":"hàn ㄏㄢˋ","pronunciations_list":"hàn","radical":"三点水","strokes":"5","wuxing":"水","structure":"左右结构","traditional":"漢","traditional_strokes":"14","kangxi_strokes":"15","unicode":"U+6C49","stroke_order":"点、点、提、横撇、捺","query_count":1,"definitions":["[hàn] 1. 中国主体民族:汉族、汉人。","[hàn] 2. 中国古代朝代名,公元前206年-公元220年,由刘邦建立:汉代、西汉。","[hàn] 3. 指银河:银汉、云汉。","[hàn] 4. 男子:好汉、汉子、硬汉。","[hàn] 5. 水名,即汉水(汉江),长江最大支流。","[hàn] 6. 指汉语、汉字:英汉翻译、汉文。"],"words":["汉字","汉族","汉语","汉朝","好汉","银汉","汉江"],"idioms":["绿林好汉","气冲霄汉","楚河汉界","彪形大汉","汉官威仪","披霄决汉"],"homophones":["汗","旱","憾","撼","悍","焊","菡"],"same_radical_chars":["江","河","湖","海","流","清","溪"],"same_wuxing_chars":["江","河","波","涛","清","海","洋"]}}
{"code":400,"message":"请提供单个汉字","data":null}
| 错误代码 | HTTP状态 | 错误信息 | 详细说明 |
|---|---|---|---|
400 |
400 | 参数错误(缺少char参数、非单个汉字、非有效汉字) | |
400 |
400 | 查询内容包含受限词汇 |
| 错误代码 | HTTP状态 | 错误信息 | 详细说明 |
|---|---|---|---|
401 | HTTP 401 | 认证失败 | 请求头中缺少 X-API-Key 或 API Key 无效 |
400 | HTTP 400 | 参数错误 | 缺少必要参数(api_id、endpoint_id、method)或必填业务参数缺失 |
404 | HTTP 404 | 资源不存在 | API不存在、已下架或端点不存在 |
403 | HTTP 403 | 未开通 | 您尚未开通此API,请先开通 |
405 | HTTP 405 | 方法不允许 | 请求方法不在端点允许列表中 |
402 | HTTP 402 | 积分不足 | 账户积分不足以调用该API |
500 | HTTP 500 | 服务器内部错误 | 系统异常 |
<?php
// 以 汉语字典(ID:52) 为例,以下为PHP请求示例:
$gateway_url = "https://api.douhao.com/gateway";
// 系统参数
$gatewayData = array(
'api_id' => 52,
'endpoint_id' => 'ep_ad9f5dd7c316e3a3bcf1bf17dff0b703',
'method' => 'GET'
);
// 业务参数(请填写实际值)
$bizParams = array(
'char' => '', // 请填写实际值
);
// 合并请求数据
$requestData = array_merge($gatewayData, $bizParams);
// 请求头(请替换为您的API密钥)
$headers = array(
'Content-Type: application/json',
'X-API-Key: 您的API密钥'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $gateway_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 180);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($requestData, JSON_UNESCAPED_UNICODE));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
$error = curl_error($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($error) {
echo "请求错误: " . $error;
} else {
echo "HTTP状态码: " . $httpCode . "\n";
echo "响应数据: " . $response;
}
?>
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import requests
import json
# API网关地址
gateway_url = "https://api.douhao.com/gateway"
# 系统参数
gateway_data = {
'api_id': 52,
'endpoint_id': 'ep_ad9f5dd7c316e3a3bcf1bf17dff0b703',
'method': 'GET'
}
# 业务参数(请填写实际值)
biz_params = {
'char': '', # 请填写实际值
}
# 合并请求参数
request_data = {**gateway_data, **biz_params}
# 请求头(请替换为您的API密钥)
headers = {
'Content-Type': 'application/json',
'X-API-Key': '您的API密钥'
}
try:
response = requests.post(
gateway_url,
json=request_data,
headers=headers,
timeout=180,
verify=False # 生产环境建议设为True
)
print(f"HTTP状态码: {response.status_code}")
print("响应数据:")
print(json.dumps(response.json(), indent=2, ensure_ascii=False))
except requests.exceptions.RequestException as e:
print(f"请求错误: {e}")
// 以 汉语字典(ID:52) 为例,以下为Node.js请求示例
// 需要先安装 axios: npm install axios
const axios = require('axios');
// API网关地址
const gatewayUrl = 'https://api.douhao.com/gateway';
// 系统参数
const gatewayData = {
api_id: 52,
endpoint_id: 'ep_ad9f5dd7c316e3a3bcf1bf17dff0b703',
method: 'GET'
};
// 业务参数(请填写实际值)
const bizParams = {
"char": "", // 请填写实际值
};
// 合并请求参数
const requestData = { ...gatewayData, ...bizParams };
// 请求头(请替换为您的API密钥)
const headers = {
'Content-Type': 'application/json',
'X-API-Key': '您的API密钥'
};
async function callApi() {
try {
const response = await axios.post(gatewayUrl, requestData, {
headers: headers,
timeout: 180000
});
console.log('HTTP状态码:', response.status);
console.log('响应数据:');
console.log(JSON.stringify(response.data, null, 2));
} catch (error) {
if (error.response) {
console.log('HTTP状态码:', error.response.status);
console.log('错误响应:', error.response.data);
} else {
console.log('请求错误:', error.message);
}
}
}
callApi();
// 以 汉语字典(ID:52) 为例,以下为Java请求示例
// 需要依赖:okhttp 和 gson
import okhttp3.*;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
public class ApiDemo {
private static final String GATEWAY_URL = "https://api.douhao.com/gateway";
private static final Gson gson = new GsonBuilder().setPrettyPrinting().create();
public static void main(String[] args) throws Exception {
// 系统参数
Map<String, Object> gatewayData = new HashMap<>();
gatewayData.put("api_id", 52);
gatewayData.put("endpoint_id", "ep_ad9f5dd7c316e3a3bcf1bf17dff0b703");
gatewayData.put("method", "GET");
// 业务参数(请填写实际值)
Map<String, Object> bizParams = new HashMap<>();
map.put("char", ""); // 请填写实际值
// 合并请求数据
Map<String, Object> requestData = new HashMap<>(gatewayData);
requestData.putAll(bizParams);
// 请求体JSON
String jsonBody = gson.toJson(requestData);
// 创建请求
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(180, TimeUnit.SECONDS)
.readTimeout(180, TimeUnit.SECONDS)
.build();
RequestBody body = RequestBody.create(
jsonBody,
MediaType.parse("application/json; charset=utf-8")
);
Request request = new Request.Builder()
.url(GATEWAY_URL)
.post(body)
.addHeader("Content-Type", "application/json")
.addHeader("X-API-Key", "您的API密钥") // 请替换为您的API密钥
.build();
try (Response response = client.newCall(request).execute()) {
System.out.println("HTTP状态码: " + response.code());
String responseBody = response.body().string();
System.out.println("响应数据:");
System.out.println(gson.toJson(gson.fromJson(responseBody, Object.class)));
}
}
}
# 以 汉语字典(ID:52) 为例,以下为cURL请求示例
curl -X POST "https://api.douhao.com/gateway" \
-H "Content-Type: application/json" \
-H "X-API-Key: 您的API密钥" \
-d '{
"api_id": 52,
"endpoint_id": "ep_ad9f5dd7c316e3a3bcf1bf17dff0b703",
"method": "GET",
"char": "" // 请填写实际值
}'
浙公网安备 33059102000262号