Google Trends技能使用说明
2026-04-01
新闻来源:网淘吧
围观:18
电脑广告
手机广告
谷歌趋势监测
监测分析谷歌趋势数据,用于市场研究、内容规划和趋势追踪。
功能
- 每日热门搜索- 查看任意国家当天的热门趋势
- 关键词随时间关注度- 关键词历史趋势数据
- 关键词对比- 多关键词对比分析
- 相关主题与查询- 发掘相关搜索词
- 区域关注度- 查看关键词在哪些区域最受欢迎
使用方式
获取当日热门搜索
使用web_fetch获取谷歌趋势RSS:

# US Daily Trends
curl -s "https://trends.google.com/trending/rss?geo=US" | head -100
# Lithuania
curl -s "https://trends.google.com/trending/rss?geo=LT" | head -100
# Worldwide
curl -s "https://trends.google.com/trending/rss?geo=" | head -100
检查关键词关注度
如需详细关键词分析,请访问谷歌趋势网站:
# Open in browser
open "https://trends.google.com/trends/explore?q=bitcoin&geo=US"
# Or fetch via web_fetch for basic data
web_fetch "https://trends.google.com/trends/explore?q=bitcoin"
对比关键词
# Compare multiple terms (comma-separated)
open "https://trends.google.com/trends/explore?q=bitcoin,ethereum,solana&geo=US"
脚本工具
trends-daily.sh
获取今日热搜趋势:
#!/bin/bash
# Usage: ./trends-daily.sh [country_code]
# Example: ./trends-daily.sh LT
GEO="${1:-US}"
curl -s "https://trends.google.com/trending/rss?geo=$GEO" | \
grep -o '<title>[^<]*</title>' | \
sed 's/<[^>]*>//g' | \
tail -n +2 | \
head -20
trends-compare.sh
生成对比链接:
#!/bin/bash
# Usage: ./trends-compare.sh keyword1 keyword2 keyword3
# Example: ./trends-compare.sh bitcoin ethereum solana
KEYWORDS=$(echo "$@" | tr ' ' ',')
echo "https://trends.google.com/trends/explore?q=$KEYWORDS"
示例工作流
早间市场调研
1. Get US trending searches
2. Get LT trending searches
3. Check if any trends relate to our business
4. Report interesting findings
内容规划
1. Compare potential blog topics
2. Find which has more search interest
3. Check seasonal patterns
4. Decide on content focus
竞争对手监测
1. Compare brand names
2. Track interest over time
3. Identify when competitors spike
4. Investigate causes
定时任务集成
设置自动化趋势监控:
// Example cron job for daily trends report
{
"name": "Daily Trends Report",
"schedule": { "kind": "cron", "expr": "0 9 * * *" },
"payload": {
"kind": "agentTurn",
"message": "Get today's Google Trends for US and LT. Summarize top 10 trends for each. Highlight any tech/business related trends."
}
}
国家/地区
常用国家代码:
- US - 美国
- LT - 立陶宛
- DE - 德国
- GB - 英国
- FR - 法国
- JP - 日本
- (空) - 全球范围
限制说明
- 谷歌趋势未提供官方API
- 高频使用可能触发速率限制
- 数据为相对值(非绝对数值)
- 详细视图的历史数据仅限约5年
技巧
- 使用具体术语- 例如“iPhone 15 Pro”而不仅仅是“iPhone”
- 检查季节性- 某些趋势具有周期性
- 与基准进行比较- 使用稳定术语作为参考
- 查看相关查询- 发现新的机会
- 监控竞争对手- 追踪品牌兴趣随时间的变化
文章底部电脑广告
手机广告位-内容正文底部


微信扫一扫,打赏作者吧~