hot-topics
152
总安装量
15
周安装量
#3108
全站排名
安装命令
npx skills add https://github.com/vikiboss/60s-skills --skill hot-topics
Agent 安装分布
claude-code
12
opencode
10
openclaw
9
gemini-cli
8
cursor
8
antigravity
7
Skill 文档
Hot Topics & Trending Content Skill
This skill helps AI agents fetch trending topics and hot searches from major Chinese social media and content platforms.
When to Use This Skill
Use this skill when users:
- Want to know what’s trending on social media
- Ask about hot topics or viral content
- Need to understand current popular discussions
- Want to track trending topics across platforms
- Research social media trends
Supported Platforms
- Weibo (å¾®å) – Chinese Twitter equivalent
- Zhihu (ç¥ä¹) – Chinese Quora equivalent
- Baidu (ç¾åº¦) – China’s largest search engine
- Douyin (æé³) – TikTok China
- Toutiao (仿¥å¤´æ¡) – ByteDance news aggregator
- Bilibili (Bç«) – Chinese YouTube equivalent
API Endpoints
| Platform | Endpoint | Description |
|---|---|---|
/v2/weibo |
Weibo hot search topics | |
| Zhihu | /v2/zhihu |
Zhihu trending questions |
| Baidu | /v2/baidu/hot |
Baidu hot searches |
| Douyin | /v2/douyin |
Douyin trending videos |
| Toutiao | /v2/toutiao |
Toutiao hot news |
| Bilibili | /v2/bili |
Bilibili trending videos |
All endpoints use GET method and base URL: https://60s.viki.moe/v2
How to Use
Get Weibo Hot Searches
import requests
def get_weibo_hot():
response = requests.get('https://60s.viki.moe/v2/weibo')
return response.json()
hot_topics = get_weibo_hot()
print("ð¥ å¾®åçæï¼")
for i, topic in enumerate(hot_topics['data'][:10], 1):
print(f"{i}. {topic['title']} - ç度: {topic['ç度']}")
Get Zhihu Hot Topics
def get_zhihu_hot():
response = requests.get('https://60s.viki.moe/v2/zhihu')
return response.json()
topics = get_zhihu_hot()
print("ð¡ ç¥ä¹çæ¦ï¼")
for topic in topics['data'][:10]:
print(f"· {topic['title']}")
Get Multiple Platform Trends
def get_all_hot_topics():
platforms = {
'weibo': 'https://60s.viki.moe/v2/weibo',
'zhihu': 'https://60s.viki.moe/v2/zhihu',
'baidu': 'https://60s.viki.moe/v2/baidu/hot',
'douyin': 'https://60s.viki.moe/v2/douyin',
'bili': 'https://60s.viki.moe/v2/bili'
}
results = {}
for name, url in platforms.items():
try:
response = requests.get(url)
results[name] = response.json()
except:
results[name] = None
return results
# Usage
all_topics = get_all_hot_topics()
Simple bash examples
# Weibo hot search
curl "https://60s.viki.moe/v2/weibo"
# Zhihu trending
curl "https://60s.viki.moe/v2/zhihu"
# Baidu hot search
curl "https://60s.viki.moe/v2/baidu/hot"
# Douyin trending
curl "https://60s.viki.moe/v2/douyin"
# Bilibili trending
curl "https://60s.viki.moe/v2/bili"
Response Format
Responses typically include:
{
"data": [
{
"title": "è¯é¢æ é¢",
"url": "https://...",
"ç度": "1234567",
"rank": 1
},
...
],
"update_time": "2024-01-15 14:00:00"
}
Example Interactions
User: “ç°å¨å¾®åä¸ä»ä¹æç«ï¼”
hot = get_weibo_hot()
top_5 = hot['data'][:5]
response = "ð¥ å¾®åçæ TOP 5ï¼\n\n"
for i, topic in enumerate(top_5, 1):
response += f"{i}. {topic['title']}\n"
response += f" ç度ï¼{topic.get('ç度', 'N/A')}\n\n"
User: “ç¥ä¹ä¸å¤§å®¶å¨è®¨è®ºä»ä¹ï¼”
zhihu = get_zhihu_hot()
response = "ð¡ ç¥ä¹å½åçé¨è¯é¢ï¼\n\n"
for topic in zhihu['data'][:8]:
response += f"· {topic['title']}\n"
User: “对æ¯åå¹³å°çç¹”
def compare_platform_trends():
all_topics = get_all_hot_topics()
summary = "ð åå¹³å°çç¹æ¦è§\n\n"
platforms = {
'weibo': 'å¾®å',
'zhihu': 'ç¥ä¹',
'baidu': 'ç¾åº¦',
'douyin': 'æé³',
'bili': 'Bç«'
}
for key, name in platforms.items():
if all_topics.get(key):
top_topic = all_topics[key]['data'][0]
summary += f"{name}ï¼{top_topic['title']}\n"
return summary
Best Practices
- Rate Limiting: Don’t call APIs too frequently, data updates every few minutes
- Error Handling: Always handle network errors and invalid responses
- Caching: Cache results for 5-10 minutes to reduce API calls
- Top N: Usually showing top 5-10 items is sufficient
- Context: Provide platform context when showing trending topics
Common Use Cases
1. Daily Trending Summary
def get_daily_trending_summary():
weibo = get_weibo_hot()
zhihu = get_zhihu_hot()
summary = "ð± 仿¥çç¹éè§\n\n"
summary += "ãå¾®åçæã\n"
summary += "\n".join([f"{i}. {t['title']}"
for i, t in enumerate(weibo['data'][:3], 1)])
summary += "\n\nãç¥ä¹çæ¦ã\n"
summary += "\n".join([f"{i}. {t['title']}"
for i, t in enumerate(zhihu['data'][:3], 1)])
return summary
2. Find Common Topics Across Platforms
def find_common_topics():
all_topics = get_all_hot_topics()
# Extract titles from all platforms
all_titles = []
for platform_data in all_topics.values():
if platform_data and 'data' in platform_data:
all_titles.extend([t['title'] for t in platform_data['data']])
# Simple keyword matching (can be improved)
from collections import Counter
keywords = []
for title in all_titles:
keywords.extend(title.split())
common = Counter(keywords).most_common(10)
return f"ð çé¨å
³é®è¯ï¼{', '.join([k for k, _ in common])}"
3. Platform-specific Trending Alert
def check_trending_topic(keyword):
platforms = ['weibo', 'zhihu', 'baidu']
found_in = []
for platform in platforms:
url = f'https://60s.viki.moe/v2/{platform}' if platform != 'baidu' else 'https://60s.viki.moe/v2/baidu/hot'
data = requests.get(url).json()
for topic in data['data']:
if keyword.lower() in topic['title'].lower():
found_in.append(platform)
break
if found_in:
return f"â
è¯é¢ '{keyword}' æ£å¨ä»¥ä¸å¹³å°trending: {', '.join(found_in)}"
return f"â è¯é¢ '{keyword}' æªå¨ä¸»æµå¹³å°trending"
4. Trending Content Recommendation
def recommend_content_by_interest(interest):
"""Recommend trending content based on user interest"""
all_topics = get_all_hot_topics()
recommendations = []
for platform, data in all_topics.items():
if data and 'data' in data:
for topic in data['data']:
if interest.lower() in topic['title'].lower():
recommendations.append({
'platform': platform,
'title': topic['title'],
'url': topic.get('url', '')
})
return recommendations
Platform-Specific Notes
Weibo (å¾®å)
- Updates frequently (every few minutes)
- Includes “ç度” (heat score)
- Some topics may have tags like “ç” or “æ°”
Zhihu (ç¥ä¹)
- Focuses on questions and discussions
- Usually more in-depth topics
- Great for understanding what people are curious about
Baidu (ç¾åº¦)
- Reflects search trends
- Good indicator of mainstream interest
- Includes various categories
Douyin (æé³)
- Video-focused trending
- Entertainment and lifestyle content
- Young audience interests
Bilibili (Bç«)
- Video platform trends
- ACG (Anime, Comic, Games) culture
- Creative content focus
Troubleshooting
Issue: Empty or null data
- Solution: API might be updating, retry after a few seconds
- Check network connectivity
Issue: Old timestamps
- Solution: Data is cached, this is normal
- Most platforms update every 5-15 minutes
Issue: Missing platform
- Solution: Ensure correct endpoint URL
- Check API documentation for changes