小红书 — 创作者热点灵感列表
SpiderHubs OpenAPI 文档:小红书 — 创作者热点灵感列表,分类 小红书。接口 GET /openapi/v1/contentcreator/xiaohongshu/app_v2/get_creator_hot_inspiration_feed。获取小红书创作者中心"热点灵感"信息流,常用于发...
OpId:
xhs-hot-inspiration · 最近更新: 2026-05-23说明
获取小红书创作者中心"热点灵感"信息流,常用于发现近期热门话题选题。
基础信息
- Endpoint:
- GET /openapi/v1/contentcreator/xiaohongshu/app_v2/get_creator_hot_inspiration_feed
- 计费:
- 1 积分 / 次
- 限流:
- 300 次 / 分钟 / 用户
请求参数说明
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| cursor | string | 否 | 分页游标,首次留空 |
响应字段说明
| 字段 | 类型 | 说明 |
|---|---|---|
| code | int | 业务状态码,200 表示成功 |
| request_id | string | 本次请求唯一标识,排查问题时可提供 |
| data | object | 业务数据容器,具体字段见下 |
| list / items | array | 热点条目列表 |
| title / word | string | 热点标题 / 关键词 |
| rank | int | 排名 |
| hot_score / hot_value | int | 热度值 |
| cursor | string | 翻页游标(信息流类返回) |
请求示例 · cURL
curl 'https://api.spiderhubs.com/openapi/v1/contentcreator/xiaohongshu/app_v2/get_creator_hot_inspiration_feed?cursor=' \
-H 'Authorization: Bearer sk_live_xxxxxxxxxxxxxxxxxxxxxxxx'响应示例
{
"code": 200,
"request_id": "1c7e7f7c-1066-41c4-b0ba-25e5316caf30",
"data": {
"code": 0,
"success": true,
"data": {
"items": [
{
"hot_id": "2713996",
"deeplink": "xhsdiscover://post_new_note?attach=%7B%22note_text_v2%22%3A%7B%22content%22%3A%2...",
"score": 10000000,
"id": 57803502,
"title": "布伦森轻松砍下30分",
"cover": "http://ci.xiaohongshu.com/notes_pre_post/1040g3k8320hlis955s705odv5j58cip9plncts...",
"type": "Hot",
"score_text": "1000万人在看"
},
"... and 19 more"
],
"end_flag": false,
"cursor": "1"
},
"msg": "成功"
}
}开始调用 SpiderHubs API
使用账户中心生成的 API Key,通过 Authorization: Bearer sk_live_xxx 调用接口。