Chargement de XiaoFlow
Préparation du moteur d'intelligence…
Préparation du moteur d'intelligence…
Protocoles de recherche à haut débit et gestion d'API pour les équipes d'ingénierie mondiales.
Sécurisez vos requêtes en incluant un jeton Authorization Bearer dans chaque en-tête.
https://api.xiaoflow.com/apiAuthorization: Bearer YOUR_TOKENLibérez l'intelligence de recherche de XiaoFlow directement dans Claude, Cursor et ChatGPT. Obtenez des mots-clés, des volumes de recherche et des statistiques de domaine en temps réel là où vous travaillez.
Utilisez le paramètre `historical=1` uniquement lorsque vous avez besoin du volume de recherche mensuel. La récupération de données historiques sur 48 mois nécessite beaucoup de calculs et peut augmenter les temps de réponse.
Notre système met automatiquement en cache les résultats pendant 30 jours. Le fait de demander à nouveau le même mot-clé avec le même emplacement/la même langue dans cette fenêtre ne déduira pas d'unités supplémentaires.
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 unlimited keyword lists with automatic batching.
| 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
}'