接口地址
https://www.chuangxinwu.cn/public/api/silly-jokes.php
接口状态
正常 (HTTP 200) 上次检测:2026-05-18 00:26:37
📝 接口描述
/public/api/silly-jokes.php
随机返回1条笑话
/public/api/silly-jokes.php?count=5
随机返回5条笑话
/public/api/silly-jokes.php?category=stupid
按分类返回
stupid 蠢话类
funny 搞笑类
daily 日常类
animal 动物类
food 食物类
work 工作类
love 爱情类
mixed 混合类
all 全部笑话
/public/api/silly-jokes.php?format=text
纯文本格式
📋 请求示例
【基础请求】
POST https://www.chuangxinwu.cn/public/api/silly-jokes.php
【请求头】
Content-Type: application/json
Accept: application/json
【参数说明】
POST请求参数通过请求体传递(JSON格式):
请求体示例:
{
"参数名1": "参数值1",
"参数名2": "参数值2"
}
【调用示例】
# cURL
curl -X POST 'https://www.chuangxinwu.cn/public/api/silly-jokes.php' \
-H 'Content-Type: application/json' \
-d '{"key":"value"}'
# JavaScript (Fetch)
fetch('https://www.chuangxinwu.cn/public/api/silly-jokes.php', {
method: 'POST',
headers: { 'Content-Type': 'application/json' }
body: JSON.stringify({ key: 'value' })
})
.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/silly-jokes.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(['key' => 'value']));
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
# Python (requests)
import requests
url = 'https://www.chuangxinwu.cn/public/api/silly-jokes.php'
response = requests.post(url, json={'key': 'value'})
print(response.json())
📤 真实返回示例
{
"success": true,
"total": 1150,
"category": "all",
"count": 1,
"stats": {
"stupid": 200,
"funny": 150,
"daily": 200,
"animal": 100,
"food": 100,
"work": 100,
"love": 100,
"mixed": 200,
"all": 1150
},
"data": [
{
"id": 477,
"text": "食物笑话477:为什么番茄会脸红?因为它见到了鸡蛋。番茄炒蛋是绝配!"
}
]
}
🔧 JavaScript (Fetch)
fetch('/api/proxy.php?url=https%3A%2F%2Fwww.chuangxinwu.cn%2Fpublic%2Fapi%2Fsilly-jokes.php', {
method: 'POST',
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/silly-jokes.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
📡 Python (requests)
import requests
url = 'https://www.chuangxinwu.cn/public/api/silly-jokes.php'
response = requests.request('POST', url)
print(response.json())