XiaoFlow を読み込み中
インテリジェンスエンジンを準備中…
インテリジェンスエンジンを準備中…
グローバルなエンジニアリングチーム向けの、高スループット検索プロトコルおよび API 管理。
すべてのリクエストヘッダーに Authorization ベアラートークンを含めることで、リクエストを保護します。
https://api.xiaoflow.com/apiAuthorization: Bearer YOUR_TOKENClaude、Cursor、ChatGPT 内で XiaoFlow の検索インテリジェンスを直接解放します。作業中の場所でリアルタイムのキーワード、検索ボリューム、ドメイン統計を取得できます。
月ごとの検索ボリュームデータが必要な場合のみ、`historical=1` パラメータを使用してください。48ヶ月分の履歴データを取得すると、計算ユニットの消費が増え、応答時間が長くなる可能性があります。
クエリ結果は自動的に30日間キャッシュされます。この期間内に、同じ場所・言語で同じキーワードを再クエリしても、追加の計算ユニットは差し引かれません。
Get real-time keyword data and market insights. New keywords are automatically indexed for your search.
| Property | Primitive | Description |
|---|---|---|
| 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.
| Property | Primitive | Description |
|---|---|---|
| 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.
| Property | Primitive | Description |
|---|---|---|
| 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.
| Property | Primitive | Description |
|---|---|---|
| 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.
| Property | Primitive | Description |
|---|---|---|
| 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