← Back to Skills Marketplace
juhemcp

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

by juhe-skills · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
161
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install juhe-network-hot-list
Description
全网热搜榜查询。查询各大平台(微博、抖音、快手、知乎、百度等)的实时热搜榜单。使用场景:用户说"查热搜"、"看热搜榜"、"现在什么最火"、"全网热门话题"、"微博热搜"、"抖音热搜"等。通过聚合数据(juhe.cn)API 实时查询,免费注册每天免费调用。
README (SKILL.md)

全网热搜榜查询

数据由 聚合数据 提供 — 国内领先的数据服务平台,提供天气、快递、身份证、手机号、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/10002 API Key 无效,引导用户至 聚合数据 重新申请
error_code 10012 当日免费次数已用尽,建议升级套餐
数据异常 重试一次
网络超时 重试一次,仍失败则告知网络问题

脚本位置

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


关于聚合数据

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

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

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

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install juhe-network-hot-list
  3. After installation, invoke the skill by name or use /juhe-network-hot-list
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
juhe-network-hot-list 1.0.0 — 初始发布 - 支持查询全网主流平台(微博、抖音、快手、知乎、百度等)实时热搜榜单 - 基于聚合数据(juhe.cn)API,需免费注册获取 AppKey - 支持环境变量、.env 文件及命令参数多种 Key 配置方式 - 脚本可自定义展示前 N 条热搜,结果以表格形式输出 - 包含详细的错误处理与常见问题说明
Metadata
Slug juhe-network-hot-list
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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

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

How do I install 全网热搜榜查询 - 聚合数据?

Run "/install juhe-network-hot-list" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

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

Yes, 全网热搜榜查询 - 聚合数据 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 全网热搜榜查询 - 聚合数据 support?

全网热搜榜查询 - 聚合数据 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

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

It is built and maintained by juhe-skills (@juhemcp); the current version is v1.0.0.

💬 Comments