XiaoFlowXiaoFlow
热门关键词热门网站
工具

关键词工具

关键词规划师批量查询
API 接口MCP 集成

主菜单

游客余额

0 CU

搜索

热门关键词
热门网站
工具
概览关键词规划师批量查询
API 接口
MCP 集成

正在加载 XiaoFlow

正在启动情报引擎…

XiaoFlow

基于 Google Ads 的实时搜索量、CPC、竞争度与 12 个月趋势,SEO 与投放人员每日免费额度。

关键词

  • 关键词规划师
  • 热门关键词
  • 热门网站
  • 批量查询

解决方案

  • API 接口
  • MCP 集成

Google Ads 是 Google LLC 的商标。XiaoFlow 与 Google LLC 无任何关联、认可或赞助关系。

关于我们联系我们隐私政策服务条款

© 2026 XiaoFlow. 保留所有权利。

文档

API 接口

为全球工程团队提供的高吞吐量搜索协议与 API 管理。

快速开始

在每个请求标头中包含 Authorization Bearer 令牌以确保安全。

https://api.xiaoflow.com/api
认证层
Authorization: Bearer YOUR_TOKEN
MCP

XiaoFlow 官方协议

将 XiaoFlow 的搜索智能直接释放到 Claude, Cursor 和 ChatGPT。在您的工作环境中获取即时关键字、搜索量和网域数据。

01 集成设置

趋势分析优化

仅在需要逐月搜索量数据时才使用 `historical=1` 参数。获取 48 个月的历史数据会消耗更多计算单元并可能增加响应时间。

智能缓存机制

系统会自动将查询结果缓存 30 天。在此窗口期内,使用相同的地理位置/语言重新查询相同的关键词不会扣除额外的计算单元。

协议索引

GET/api/v1/keywords
1 计算单元 / 请求

Get real-time keyword data and market insights. New keywords are automatically indexed for your search.

属性类型描述
keyword stringSearch term (e.g."wedding rings").
url stringPage URL for content analysis.
site stringWebsite domain to map.
location_id stringLocation ID or ISO code (e.g., 2840 or US).
language_id stringLanguage ID or code (e.g., 1000 or en).
historical booleanEnable historical trend data (0 or 1).
date_range numberNumber of months of history (12, 24, 48).
实例范例
curl -G "https://api.xiaoflow.com/api/v1/keywords" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d keyword=wedding%20rings \
  -d location_id=US \
  -d historical=1 \
  -d date_range=24
POST/api/v1/keywords/ideas
1 计算单元 / 请求

Generate new keyword ideas based on a seed keyword, URL, or domain.

属性类型描述
keyword •stringSeed keyword (required).
url stringSeed URL.
site stringSeed domain.
location_id stringLocation ID.
language_id stringLanguage ID.
historical booleanInclude historical trends for generated ideas.
实例范例
curl -X POST "https://api.xiaoflow.com/api/v1/keywords/ideas" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "keywords": ["wedding rings"],
  "location_id": "us",
  "language_id": "en",
  "historical": true
}'
POST/api/v1/keywords/bulk
1 计算单元 / 请求

High-throughput bulk metrics retrieval for unlimited keyword lists with automatic batching.

属性类型描述
keywords •arrayList of keywords to analyze.
location_id stringLocation ID or ISO code.
language_id stringLanguage ID or code.
historical booleanEnable historical trend data (0 or 1).
date_range numberNumber of months of history (12, 24, 48).
实例范例
curl -X POST "https://api.xiaoflow.com/api/v1/keywords/bulk" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "keywords": ["wedding rings", "diamond rings"],
  "location_id": "US",
  "historical": 1,
  "date_range": 12
}'

API 界面

访客每日配额5 Requests
Tier 1 用户每日配额10 Requests
单元乘数1.0x 核心
格式严格 JSON
AuthBearer JWT

标准部署

授权实体可生成唯一的凭证,用于整合至高吞吐量的数据管道。

生成访问密钥