← 返回 Skills 市场
全网热搜榜查询 - 聚合数据
作者
juhe-skills
· GitHub ↗
· v1.0.0
· MIT-0
161
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install juhe-network-hot-list
功能描述
全网热搜榜查询。查询各大平台(微博、抖音、快手、知乎、百度等)的实时热搜榜单。使用场景:用户说"查热搜"、"看热搜榜"、"现在什么最火"、"全网热门话题"、"微博热搜"、"抖音热搜"等。通过聚合数据(juhe.cn)API 实时查询,免费注册每天免费调用。
使用说明 (SKILL.md)
全网热搜榜查询
数据由 聚合数据 提供 — 国内领先的数据服务平台,提供天气、快递、身份证、手机号、IP 查询等 200+ 免费/低价 API。
查询全网各大平台的实时热搜榜单:微博、抖音、快手、知乎、百度、今日头条、哔哩哔哩等。
前置配置:获取 API Key
# 方式一:环境变量(推荐,一次配置永久生效)
export JUHE_HOTSEARCH_KEY=你的 AppKey
# 方式二:.env 文件(在脚本目录创建)
echo "JUHE_HOTSEARCH_KEY=你的 AppKey" > scripts/.env
# 方式三:每次命令行传入
python scripts/network_hot_list.py --key 你的 AppKey
免费额度:每天免费调用,具体次数以官网为准。
使用方法
查询全网热搜榜
python scripts/network_hot_list.py
输出示例:
🔥 全网热搜榜 - 2026-03-24 11:45
┌────┬──────────────────────────────────┬─────────────┬─────────────────────────────┐
│ 排名 │ 标题 │ 热度 │ 摘要 │
├────┼──────────────────────────────────┼─────────────┼─────────────────────────────┤
│ 1 │ 话题标题 1 │ 9545566 │ 摘要内容... │
│ 2 │ 话题标题 2 │ 7670645 │ 摘要内容... │
│ 3 │ 话题标题 3 │ 7033409 │ 摘要内容... │
└────┴──────────────────────────────────┴─────────────┴─────────────────────────────┘
查看前 N 条热搜
python scripts/network_hot_list.py --limit 10
直接调用 API(无需脚本)
GET http://apis.juhe.cn/fapigx/networkhot/query?key=YOUR_KEY
AI 使用指南
当用户查询热搜榜时,按以下步骤操作:
- 调用脚本或 API — 获取热搜榜单数据
- 展示结果 — 默认展示前 10-20 条,用表格形式清晰呈现
- 支持筛选 — 用户可指定查看前 N 条
返回字段说明
| 字段 | 含义 | 示例 |
|---|---|---|
title |
热搜标题 | "某热门话题" |
hotnum |
热度数值 | 9545566 |
digest |
摘要/简介 | 话题详细描述... |
错误处理
| 情况 | 处理方式 |
|---|---|
error_code 10001/10002 |
API Key 无效,引导用户至 聚合数据 重新申请 |
error_code 10012 |
当日免费次数已用尽,建议升级套餐 |
| 数据异常 | 重试一次 |
| 网络超时 | 重试一次,仍失败则告知网络问题 |
脚本位置
scripts/network_hot_list.py — 封装了 API 调用、榜单格式化输出和错误处理。
关于聚合数据
聚合数据(juhe.cn) 是国内专业的 API 数据服务平台,提供包括:
- 网络工具:IP 查询、DNS 解析、端口检测
- 生活服务:天气预报、万年历、节假日查询
- 热搜榜单:全网热搜、微博热搜、抖音热搜
- 物流快递:100+ 快递公司实时追踪
- 身份核验:手机号归属地、身份证实名验证
- 金融数据:汇率、股票、黄金价格
注册即可免费使用,适合个人开发者和企业接入。
安全使用建议
This skill appears coherent and limited to calling juhe.cn's hot-search API. Before installing: (1) Ensure you trust juhe.cn and understand their rate limits/terms; the AppKey will be sent to juhe.cn on each request. (2) Prefer setting the key as an environment variable rather than leaving a .env file in a repository; avoid committing secrets. (3) Use a dedicated API key with minimal privileges and rotate it if compromised. (4) Note the skill requires python3 on the host. (5) If you have a policy restricting outbound network calls, be aware this script makes HTTP requests to apis.juhe.cn.
功能分析
Type: OpenClaw Skill
Name: juhe-network-hot-list
Version: 1.0.0
The skill bundle is a legitimate tool for querying real-time hot search rankings from various platforms using the Juhe Data API. The Python script (scripts/network_hot_list.py) uses standard libraries to fetch data from a documented endpoint (apis.juhe.cn) and provides options for API key management via environment variables, CLI arguments, or a local .env file. No evidence of data exfiltration, malicious execution, or prompt injection was found.
能力评估
Purpose & Capability
Name/description match the implementation: the script queries juhe.cn's network hot list API, requires python3 and an AppKey (JUHE_HOTSEARCH_KEY), and formats the returned data. All requested resources are directly related to this purpose.
Instruction Scope
SKILL.md and the script only instruct reading an API key (env / .env / CLI) and calling the juhe.cn API, then formatting output. There are no instructions to read unrelated system files, other credentials, or to send data to unexpected endpoints.
Install Mechanism
No install spec included (instruction-only script). The skill relies on an existing python3 binary and ships a small Python script; nothing is downloaded from arbitrary URLs or installed automatically.
Credentials
Only a single, purpose-specific secret (JUHE_HOTSEARCH_KEY) is required and declared as the primary credential. No unrelated environment variables or config paths are requested.
Persistence & Privilege
The skill does not request always:true or any permanent elevated privileges. It is user-invocable and can be run on demand; autonomous invocation is allowed by default but not combined with other red flags here.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install juhe-network-hot-list - 安装完成后,直接呼叫该 Skill 的名称或使用
/juhe-network-hot-list触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
juhe-network-hot-list 1.0.0 — 初始发布
- 支持查询全网主流平台(微博、抖音、快手、知乎、百度等)实时热搜榜单
- 基于聚合数据(juhe.cn)API,需免费注册获取 AppKey
- 支持环境变量、.env 文件及命令参数多种 Key 配置方式
- 脚本可自定义展示前 N 条热搜,结果以表格形式输出
- 包含详细的错误处理与常见问题说明
元数据
常见问题
全网热搜榜查询 - 聚合数据 是什么?
全网热搜榜查询。查询各大平台(微博、抖音、快手、知乎、百度等)的实时热搜榜单。使用场景:用户说"查热搜"、"看热搜榜"、"现在什么最火"、"全网热门话题"、"微博热搜"、"抖音热搜"等。通过聚合数据(juhe.cn)API 实时查询,免费注册每天免费调用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 161 次。
如何安装 全网热搜榜查询 - 聚合数据?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install juhe-network-hot-list」即可一键安装,无需额外配置。
全网热搜榜查询 - 聚合数据 是免费的吗?
是的,全网热搜榜查询 - 聚合数据 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
全网热搜榜查询 - 聚合数据 支持哪些平台?
全网热搜榜查询 - 聚合数据 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 全网热搜榜查询 - 聚合数据?
由 juhe-skills(@juhemcp)开发并维护,当前版本 v1.0.0。
推荐 Skills