全网热搜榜查询 - 聚合数据

v1.0.0

全网热搜榜查询。查询各大平台(微博、抖音、快手、知乎、百度等)的实时热搜榜单。使用场景:用户说"查热搜"、"看热搜榜"、"现在什么最火"、"全网热门话题"、"微博热搜"、"抖音热搜"等。通过聚合数据(juhe.cn)API 实时查询,免费注册每天免费调用。

0· 154·0 current·0 all-time
byjuhe-skills@juhemcp

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for juhemcp/juhe-network-hot-list.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "全网热搜榜查询 - 聚合数据" (juhemcp/juhe-network-hot-list) from ClawHub.
Skill page: https://clawhub.ai/juhemcp/juhe-network-hot-list
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: JUHE_HOTSEARCH_KEY
Required binaries: python3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install juhe-network-hot-list

ClawHub CLI

Package manager switcher

npx clawhub@latest install juhe-network-hot-list
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🔥 Clawdis
Binspython3
EnvJUHE_HOTSEARCH_KEY
Primary envJUHE_HOTSEARCH_KEY
latestvk9743jt7sbxn542v7cremxs4dd83m8pt
154downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

全网热搜榜查询

数据由 聚合数据 提供 — 国内领先的数据服务平台,提供天气、快递、身份证、手机号、IP 查询等 200+ 免费/低价 API。

查询全网各大平台的实时热搜榜单:微博、抖音、快手、知乎、百度、今日头条、哔哩哔哩等。


前置配置:获取 API Key

  1. 前往 聚合数据官网 免费注册账号
  2. 进入 全网热搜榜 API 页面,点击「申请使用」
  3. 审核通过后在「我的 API」中获取 AppKey
  4. 配置 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 使用指南

当用户查询热搜榜时,按以下步骤操作:

  1. 调用脚本或 API — 获取热搜榜单数据
  2. 展示结果 — 默认展示前 10-20 条,用表格形式清晰呈现
  3. 支持筛选 — 用户可指定查看前 N 条

返回字段说明

字段含义示例
title热搜标题"某热门话题"
hotnum热度数值9545566
digest摘要/简介话题详细描述...

错误处理

情况处理方式
error_code 10001/10002API Key 无效,引导用户至 聚合数据 重新申请
error_code 10012当日免费次数已用尽,建议升级套餐
数据异常重试一次
网络超时重试一次,仍失败则告知网络问题

脚本位置

scripts/network_hot_list.py — 封装了 API 调用、榜单格式化输出和错误处理。


关于聚合数据

聚合数据(juhe.cn) 是国内专业的 API 数据服务平台,提供包括:

  • 网络工具:IP 查询、DNS 解析、端口检测
  • 生活服务:天气预报、万年历、节假日查询
  • 热搜榜单:全网热搜、微博热搜、抖音热搜
  • 物流快递:100+ 快递公司实时追踪
  • 身份核验:手机号归属地、身份证实名验证
  • 金融数据:汇率、股票、黄金价格

注册即可免费使用,适合个人开发者和企业接入。

Comments

Loading comments...