抖音 — 上升热点榜
SpiderHubs OpenAPI 文档:抖音 — 上升热点榜,分类 抖音。接口 GET /openapi/v1/contentcreator/douyin/billboard/fetch_hot_rise_list。获取热度上升中的热点列表(适合提前发现潜力话题)。
OpId:
dy-hot-rise · 最近更新: 2026-05-23说明
获取热度上升中的热点列表(适合提前发现潜力话题)。
基础信息
- Endpoint:
- GET /openapi/v1/contentcreator/douyin/billboard/fetch_hot_rise_list
- 计费:
- 1 积分 / 次
- 限流:
- 300 次 / 分钟 / 用户
请求参数说明
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| page | string | 是 | 页码,从 1 开始 |
| page_size | string | 是 | 单页条数,建议 10~20 |
| order | string | 是 | 排序字段,如 rise_score / hot_score |
| sentence_tag | string | 否 | 句子标签过滤 |
| keyword | string | 否 | 关键词过滤 |
响应字段说明
| 字段 | 类型 | 说明 |
|---|---|---|
| code | int | 业务状态码,200 表示成功 |
| request_id | string | 本次请求唯一标识,排查问题时可提供 |
| data | object | 业务数据容器,具体字段见下 |
| list / word_list | array | 榜单条目列表 |
| word / sentence | string | 热点词 / 话题 |
| hot_value / hot_score | int | 热度值 |
| position / rank | int | 排名 |
| sentence_id / query_id | string | 话题 ID(可传给「话题相关视频」接口) |
| event_time / snapshot_time | int | 上榜 / 快照时间 |
请求示例 · cURL
curl 'https://api.spiderhubs.com/openapi/v1/contentcreator/douyin/billboard/fetch_hot_rise_list?page=1&page_size=10&order=rise_score' \
-H 'Authorization: Bearer sk_live_xxxxxxxxxxxxxxxxxxxxxxxx'响应示例
{
"code": 200,
"request_id": "64261e9b-00a1-4a8a-b8d4-7f0c3a587ce8",
"data": {
"code": 0,
"data": {
"page": {
"page": 1,
"page_size": 10,
"total": 2787
},
"objs": [
{
"rank": 1,
"rank_diff": 0.5,
"sentence": "逐帧拆解梅奔队内攻防争议",
"sentence_id": 2510159,
"create_at": 1779587439,
"hot_score": 7773571,
"video_count": 3,
"sentence_tag": 5000,
"city_code": 0,
"trends": [
{
"datetime": "2026-05-24 11",
"hot_score": 4516589
},
"... and 6 more"
],
"index": 1,
"SnapshotSubType": "",
"city_name": "",
"sentence_tag_name": "体育",
"SnapshotType": 100,
"SnapshotID": 20260524170500,
"first_item_cover_url": "",
"is_favorite": false,
"item_list": null,
"item_list_i64": null,
"recommend_type": null,
"related_event": null,
"allow_publish": false,
"label_name": "",
"label": 0
},
"... and 9 more"
],
"last_update_time": "20260524170500"
},
"extra": {
"now": 1779613853000
}
}
}开始调用 SpiderHubs API
使用账户中心生成的 API Key,通过 Authorization: Bearer sk_live_xxx 调用接口。