名称 | 必填 | 类型 | 说明 |
---|---|---|---|
type | 是 | string | 查询的类型 |
名称 | 类型 | 说明 |
---|---|---|
success | bool | 返回状态的真假 |
title | string | 接口标题 |
subtitle | string | 接口信息 |
update_time | string | 访问接口刷新时间 |
data.index | string | 列表序号 |
data.title | string | 列表标题 |
data.word_type | string | 列表热门类型 |
data.icon | string | 列表热门类型小图标 |
data.url | string | 列表链接 |
data.mobilUrl | string | 列表链接 |
copyright | string | 版权信息 |
{
"success": true,
"title": "哔哩哔哩",
"subtitle": "热搜榜",
"update_time": "2024-11-22 09:23:28",
"data": [
{
"index": 1,
"title": "黑神话获金摇杆年度最佳游戏",
"word_type": 5,
"icon": "http:\/\/i0.hdslb.com\/bfs\/activity-plat\/static\/20221213\/eaf2dd702d7cc14d8d9511190245d057\/lrx9rnKo24.png",
"url": "https:\/\/search.bilibili.com\/all?keyword=黑神话获金摇杆年度最佳游戏&order=click",
"mobilUrl": "https:\/\/search.bilibili.com\/all?keyword=黑神话获金摇杆年度最佳游戏&order=click"
},
{
"index": 2,
"title": "普京证实对乌实战中测试导弹",
"word_type": 4,
"icon": "http:\/\/i0.hdslb.com\/bfs\/activity-plat\/static\/20221118\/eaf2dd702d7cc14d8d9511190245d057\/UF7B1wVKT2.png",
"url": "https:\/\/search.bilibili.com\/all?keyword=普京证实对乌实战中测试导弹&order=click",
"mobilUrl": "https:\/\/search.bilibili.com\/all?keyword=普京证实对乌实战中测试导弹&order=click"
},
{
"index": 3,
"title": "GTA6获金摇杆最受期待奖",
"word_type": 5,
"icon": "http:\/\/i0.hdslb.com\/bfs\/activity-plat\/static\/20221213\/eaf2dd702d7cc14d8d9511190245d057\/lrx9rnKo24.png",
"url": "https:\/\/search.bilibili.com\/all?keyword=GTA6获金摇杆最受期待奖&order=click",
"mobilUrl": "https:\/\/search.bilibili.com\/all?keyword=GTA6获金摇杆最受期待奖&order=click"
}
],
"copyright": "善恶聚合热搜榜,源码获取联系QQ3951157"
}
名称 | 类型 | 说明 |
---|---|---|
true | bool | 返回状态为真 |
false | bool | 返回状态为假(参数未填写正确) |
<?php
// 初始化cURL会话
$ch = curl_init();
// 设置请求URL,用户中心获取token,自行替换其他参数
curl_setopt($ch, CURLOPT_URL, "https://api.ba9.cn/api/get.bilihot?type=bilihot");
// 设置请求头
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Authorization: YOUR_TOKEN'
));
// 返回响应而不是直接输出
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// 执行请求并获取响应
$response = curl_exec($ch);
// 关闭cURL会话
curl_close($ch);
// 将响应解析为JSON格式
$data = json_decode($response, true);
// 输出JSON数据
print_r($data);
?>
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例