名称: keywords-everywhere
描述: 通过 Keywords Everywhere API 进行 SEO 关键词研究与竞争对手分析。适用于获取关键词的搜索量、每次点击费用(CPC)、竞争度数据,查找相关关键词(PASF),分析域名/URL 针对哪些关键词进行排名,或获取反向链接数据。
用于 SEO 关键词研究、竞争对手分析和反向链接指标的命令行工具。
需要 API 密钥。请在 clawdbot 配置文件的 skills.entries.keywords-everywhere.apiKey 下配置,或设置环境变量:
export KEYWORDS_EVERYWHERE_API_KEY="your_api_key"
python3 scripts/kwe.py <命令> [参数] [选项]
或添加别名:
alias kwe="python3 /path/to/skills/keywords-everywhere/scripts/kwe.py"
获取关键词数据(搜索量、CPC、竞争度、趋势):
kwe keywords "seo工具" "关键词研究" --country us --currency usd
相关关键词(发现相关术语):
kwe related "内容营销" --num 20
用户还搜索了:
kwe pasf "最佳CRM软件" --num 15
域名排名关键词(含流量估算):
kwe domain-keywords example.com --country us --num 100
特定 URL 排名关键词:
kwe url-keywords "https://example.com/blog/post" --num 50
域名反向链接:
kwe domain-backlinks example.com --num 50
唯一域名反向链接(每个引用域名仅计一次):
kwe unique-domain-backlinks example.com --num 30
页面反向链接(特定 URL):
kwe page-backlinks "https://example.com/page" --num 20
唯一页面反向链接:
kwe unique-page-backlinks "https://example.com/page"
查询积分余额:
kwe credits
列出支持的国家/地区:
kwe countries
列出支持的货币:
kwe currencies
| 选项 | 描述 | 默认值 |
|---|---|---|
--country |
国家/地区代码(空值表示全球,如 us、uk、in 等) |
global |
--currency |
货币代码(如 usd、gbp、inr 等) |
usd |
--num |
结果数量(白银套餐上限为 2000) | 10 |
--output |
输出格式:table、json、csv |
table |
vol:月搜索量cpc:每次点击费用(广告主出价)competition:竞争度得分(0-1)trend:12 个月搜索趋势数据keyword:排名关键词estimated_monthly_traffic:预估月有机流量serp_position:当前 SERP 排名位置domain_source:引用域名anchor_text:链接锚文本url_source / url_target:来源/目标 URL1 积分 = 1 个关键词。白银套餐:每年 400,000 积分,每个站点最多查询 2,000 个关键词/反向链接。
竞争对手关键词研究:
# 竞争对手针对哪些关键词排名?
kwe domain-keywords competitor.com --num 200 --output json > keywords.json
# 获取特定关键词的详细指标
kwe keywords "关键词1" "关键词2" "关键词3" --country us
内容差距分析:
# 查找竞争对手排名的关键词
kwe domain-keywords competitor.com --num 500
# 获取您主题的相关关键词
kwe related "您的主题" --num 100
kwe pasf "您的主题" --num 100
反向链接挖掘:
# 查找谁链接到竞争对手
kwe unique-domain-backlinks competitor.com --num 100 --output json