接口地址
https://www.chuangxinwu.cn/public/api/riddle_api.php
接口状态
正常 (HTTP 200) 上次检测:2026-05-17 19:23:30
📝 接口描述
============ 调用方式 ============\
\
\
\
1. 随机获取一条灯谜:/riddle_api.php\
\
2. 获取指定ID的灯谜:/riddle_api.php?id=1\
\
3. 获取多条随机灯谜:/riddle_api.php?num=5\
\
4. 按分类获取:/riddle_api.php?type=字谜\
\
5. 按难度获取:/riddle_api.php?difficulty=简单\
\
6. 获取总数:/riddle_api.php?action=count\
\
7. JSONP调用:/riddle_api.php?callback=jsonpCallback
📋 请求示例
【基础请求】
GET https://www.chuangxinwu.cn/public/api/riddle_api.php
【请求头】
Content-Type: application/json
Accept: application/json
【参数说明】
GET请求参数通过URL传递:
https://www.chuangxinwu.cn/public/api/riddle_api.php?参数名1=参数值1&参数名2=参数值2
【调用示例】
# cURL
curl -X GET 'https://www.chuangxinwu.cn/public/api/riddle_api.php' \
-H 'Content-Type: application/json'
# JavaScript (Fetch)
fetch('https://www.chuangxinwu.cn/public/api/riddle_api.php', {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
})
.then(res => res.json())
.then(data => console.log(data));
# PHP (cURL)
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.chuangxinwu.cn/public/api/riddle_api.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
# Python (requests)
import requests
url = 'https://www.chuangxinwu.cn/public/api/riddle_api.php'
response = requests.get(url)
print(response.json())
📤 真实返回示例
{
"code": 200,
"success": true,
"data": {
"id": 200,
"riddle": "一加一(第193号)",
"answer": "王",
"disturb": [
"水",
"准",
"山"
],
"description": "这是一个有趣的谜语,快来猜猜看吧!",
"type": "食物谜"
},
"total": 500,
"message": "查询成功"
}
🔧 JavaScript (Fetch)
fetch('/api/proxy.php?url=https%3A%2F%2Fwww.chuangxinwu.cn%2Fpublic%2Fapi%2Friddle_api.php', {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
})
.then(res => res.json())
.then(data => console.log(data))
.catch(err => console.error(err));
🐘 PHP (cURL)
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.chuangxinwu.cn/public/api/riddle_api.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
📡 Python (requests)
import requests
url = 'https://www.chuangxinwu.cn/public/api/riddle_api.php'
response = requests.request('GET', url)
print(response.json())