抖音火热榜提供全平台实时热榜的 JSON 接口,可供外部站点直接调用与集成。
GET https://douyinhuo.cn/api/data
返回格式:application/json · 已开启跨域(Access-Control-Allow-Origin: *),浏览器端可直接 fetch。
| 字段 | 类型 | 说明 |
|---|---|---|
last_update | string | 数据最后更新时间,如 2026-07-30 23:00:00 |
platforms | array | 平台热榜数组,见下表 |
platforms[] 字段 | 类型 | 说明 |
|---|---|---|
id | string | 平台唯一标识,如 weibo |
name | string | 平台名称 |
category | string | 分类(综合/娱乐/新闻/财经/科技/体育/其他) |
icon | string | 图标文件名 |
refresh | int | 更新频率等级(1 实时 / 2 每小时 / 3 每日 / 4 较慢) |
items | array | 热榜条目,见下表 |
items[] 字段 | 类型 | 说明 |
|---|---|---|
rank | int | 排名(从 1 开始) |
title | string | 热榜标题 |
url | string | 跳转链接(原平台页面) |
{
"last_update": "2026-07-30 23:00:00",
"platforms": [
{
"id": "weibo",
"name": "微博",
"category": "综合",
"icon": "weibo.jpg",
"refresh": 1,
"items": [
{ "rank": 1, "title": "某热点话题", "url": "https://s.weibo.com/weibo?q=..." },
{ "rank": 2, "title": "另一热点", "url": "https://s.weibo.com/weibo?q=..." }
]
}
]
}
fetch("https://douyinhuo.cn/api/data")
.then(r => r.json())
.then(data => {
data.platforms.forEach(p => {
console.log(p.name, p.items.length, "条热榜");
});
});
本站为信息索引导航工具,仅聚合各平台公开热榜的标题与链接,不存储任何第三方内容原文。如有疑问或侵权下架请求,请联系:2776610598@qq.com。