正在載入 XiaoFlow
正在啟動情報引擎…
正在啟動情報引擎…
为全球工程团队提供的高吞吐量搜索协议与 API 管理。
在每个请求标头中包含 Authorization Bearer 令牌以确保安全。
https://api.xiaoflow.com/apiAuthorization: Bearer YOUR_TOKEN将 XiaoFlow 的搜索智能直接释放到 Claude, Cursor 和 ChatGPT。在您的工作环境中获取即时关键字、搜索量和网域数据。
仅在需要逐月搜索量数据时才使用 `historical=1` 参数。获取 48 个月的历史数据会消耗更多计算单元并可能增加响应时间。
系统会自动将查询结果缓存 30 天。在此窗口期内,使用相同的地理位置/语言重新查询相同的关键词不会扣除额外的计算单元。
Get real-time keyword data and market insights. New keywords are automatically indexed for your search.
| 属性 | 类型 | 描述 |
|---|---|---|
| keyword | string | Search term (e.g."wedding rings"). |
| url | string | Page URL for content analysis. |
| site | string | Website domain to map. |
| location_id | string | Location ID or ISO code (e.g., 2840 or US). |
| language_id | string | Language ID or code (e.g., 1000 or en). |
| historical | boolean | Enable historical trend data (0 or 1). |
| date_range | number | Number 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=24Generate new keyword ideas based on a seed keyword, URL, or domain.
| 属性 | 类型 | 描述 |
|---|---|---|
| keyword • | string | Seed keyword (required). |
| url | string | Seed URL. |
| site | string | Seed domain. |
| location_id | string | Location ID. |
| language_id | string | Language ID. |
| historical | boolean | Include 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
}'High-throughput bulk metrics retrieval for up to 1,000 keywords in a single call.
| 属性 | 类型 | 描述 |
|---|---|---|
| keywords • | array | List of keywords to analyze. |
| location_id | string | Location ID or ISO code. |
| language_id | string | Language ID or code. |
| historical | boolean | Enable historical trend data (0 or 1). |
| date_range | number | Number 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
}'Get comprehensive Etsy shop intelligence, including active listings, sales history, and revenue estimates.
| 属性 | 类型 | 描述 |
|---|---|---|
| query • | string | Shop ID or Shop Name (e.g."SimpleLivingShop"). |
| refresh | boolean | Force sync with live Etsy data (costs 1 unit). |
curl -G "https://api.xiaoflow.com/api/v1/etsy/shop" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d query=SimpleLivingShopRetrieve deep performance metrics for a specific Etsy listing, including sales trends and engagement data.
| 属性 | 类型 | 描述 |
|---|---|---|
| query • | string | Listing ID or URL (e.g."123456789"). |
| refresh | boolean | Force sync with live Etsy data (costs 1 unit). |
curl -G "https://api.xiaoflow.com/api/v1/etsy/listing" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d query=123456789