SEO & AEO API:
Automatisez vos flux de travail de recherche et d'IA
Direct programmatic access to live Google SERPs and AI Overviews, AI citation checks across ChatGPT, Perplexity, Claude and Gemini, backlinks and domain authority, keyword metrics, site audits, and real-time AI bot crawler tracking. Une API REST et un serveur MCP, même clé.
curl -X POST "https://www.airanklab.com/api/v1/ai-citation-check" \
-H "x-api-key: YOUR_API_KEY" \
-H "x-api-secret: YOUR_API_SECRET" \
-H "Content-Type: application/json" \
-d '{
"prompt": "best AEO audit tools 2026",
"domain": "airanklab.com",
"engines": ["ChatGPT", "Perplexity", "Claude", "Gemini"]
}'Le moteur de données sur lequel vos flux de travail s'exécuteront
Combinez les données SERP traditionnelles de Google avec les métriques de citation des moteurs d'IA en temps réel et les journaux des robots d'exploration.
Live Search Engine SERPs
Fetch live Google SERPs — organic positions, featured snippets, People Also Ask, related searches — plus Google AI Overview and AI Mode answers with every source they cite, by country, language and device.
AI Search Visibility (AEO/GEO)
Ask ChatGPT, Perplexity, Claude and Gemini the same question in one call and get back who mentions you, who cites you, from which URLs, and which competitors won the answer instead.
Backlinks & Domain Authority
Pull the full backlink profile of any domain: authority rank, referring domains, individual links with anchors and spam scores, anchor-text distribution, monthly trend, and bulk authority for up to 100 domains.
AI Bot Crawler Log Analytics
Inspect live server logs of GPTBot, ClaudeBot, PerplexityBot, Bytespider, and Googlebot traffic to protect IP or ensure indexation.
Keyword Universe & SERP Intent
Query monthly search volumes, keyword difficulty (KD), CPC, intent classification (Informational vs Commercial), and AI Overview presence.
Site Audits & Core Web Vitals
Programmatically diagnose web pages for technical SEO blockers, Core Web Vitals (LCP, CLS, INP), JSON-LD schema, and llms.txt compatibility.
Google Analytics 4 & Search Console
Fetch Google Search Console performance data, keyword clicks, impressions, and GA4 traffic metrics combined with AI search visibility.
Conçu pour les pipelines d'automatisation et les flux de travail d'IA
Découvrez comment les agences de marketing, les équipes SEO d'entreprise et les ingénieurs en IA utilisent notre API pour étendre leurs opérations.
Monitor Brand Visibility Across AI Search Engines
Track ChatGPT, Perplexity, Gemini & Claude citations at scale
Feed buyer-intent questions into one call and get a per-engine verdict: mentioned, cited, the exact source URLs, and which competitors were recommended instead.
const res = await fetch("https://www.airanklab.com/api/v1/ai-citation-check", {
method: "POST",
headers: {
"x-api-key": process.env.AIRANKLAB_API_KEY,
"x-api-secret": process.env.AIRANKLAB_API_SECRET,
"Content-Type": "application/json"
},
body: JSON.stringify({
prompt: "top enterprise marketing software",
domain: "acmecorp.com",
competitors: ["rival.com"]
})
});
// Tool calls are async: poll the job for the result
const { data } = await res.json();
const job = await pollJob(data.jobId);
console.log(job.result.summary.citationRate, job.result.summary.citedIn);Automate Technical Audits & URL Pipelines
Turn full site audits into structured diagnostic feeds
Run an audit on every publish or deployment to catch schema errors, thin answers or failing Core Web Vitals before they reach production.
const start = await fetch("https://www.airanklab.com/api/v1/seo-aeo-geo-audit", {
method: "POST",
headers: {
"x-api-key": process.env.AIRANKLAB_API_KEY,
"x-api-secret": process.env.AIRANKLAB_API_SECRET,
"Content-Type": "application/json"
},
body: JSON.stringify({ url: "https://example.com/blog/mcp-setup" })
});
const { data } = await start.json(); // 202 + jobId
const job = await pollJob(data.jobId); // GET /jobs/{jobId}
if (job.result.aeo.score < 85) {
triggerSlackAlert(`AEO score dropped: ${job.result.aeo.score}`);
}Audit Backlinks & Track AI Crawler Visits
Link authority on demand, bot traffic in real time
Pull any domain’s backlink profile for competitive research, and read your own GPTBot / ClaudeBot / PerplexityBot visit logs to confirm the AI engines are actually crawling you.
# Backlink profile of any domain (async, 15 credits)
curl -X POST "https://www.airanklab.com/api/v1/backlinks-overview" \
-H "x-api-key: YOUR_KEY" -H "x-api-secret: YOUR_SECRET" \
-H "Content-Type: application/json" \
-d '{"target":"competitor.com","includeHistory":true}'
# AI bot visits to your own domain (free, returns immediately)
curl "https://www.airanklab.com/api/v1/tracking/stats?domain=example.com" \
-H "x-api-key: YOUR_KEY" -H "x-api-secret: YOUR_SECRET"Interrogez AI Rank Lab depuis n'importe quel assistant IA
In addition to REST API endpoints, AI Rank Lab provides a hosted Serveur MCP at POST /api/v1/mcp. Connect Claude Code, Cursor, Windsurf, or custom LangChain/CrewAI agents in seconds.
{
"mcpServers": {
"airanklab": {
"url": "https://www.airanklab.com/api/v1/mcp",
"headers": {
"x-api-key": "YOUR_API_KEY",
"x-api-secret": "YOUR_API_SECRET"
}
}
}
}Explorez les catégories de points de terminaison API principaux
Inspectez les charges utiles de requêtes réelles et les structures de réponses JSON en direct.
AI Search Visibility (AEO)
Ask ChatGPT, Perplexity, Claude and Gemini the same question at once and see which of them cite your domain. 100 credits per engine.
Corps de la requête (JSON) :
{
"prompt": "best AEO rank tracker",
"domain": "airanklab.com",
"engines": ["ChatGPT", "Perplexity", "Claude", "Gemini"],
"competitors": ["rival.com"]
}Sortie de la réponse (200 OK) :
// GET /jobs/{jobId} once the job completes
{
"success": true,
"data": {
"status": "completed",
"result": {
"domain": "airanklab.com",
"summary": {
"citedIn": ["ChatGPT", "Perplexity"],
"mentionedIn": ["ChatGPT", "Perplexity", "Gemini"],
"notFoundIn": ["Claude"],
"citationRate": 50,
"visibilityScore": 63,
"competitors": [
{ "domain": "rival.com", "citedIn": ["Gemini"], "citationRate": 25 }
]
},
"results": [
{
"engine": "ChatGPT",
"cited": true,
"citedUrls": ["https://airanklab.com/seo-aeo-geo-audit-tool"],
"mentionPosition": 1,
"sentiment": "positive"
}
]
}
}
}Intégrez les données SEO et AEO dans votre stack
Que vous construisiez des pipelines de reporting client ou des équipes d'agents IA autonomes, notre API s'intègre à votre stack.
Agences SEO et Marketing
Automatisez les audits client en marque blanche, suivez la part de voix des citations AEO et générez sans effort des tableaux de bord de reporting PDF / Data Studio automatisés.
Équipes SEO d'entreprise
Surveillez les changements dans l'univers des mots-clés, évaluez les écarts de citation des LLM concurrents sur 54 marchés de recherche (desktop et mobile), et alimentez vos pipelines de science des données internes.
Développeurs et Ingénieurs IA
Alimentez vos pipelines RAG avec des résultats de recherche web en temps réel, auditez le trafic des crawlers de bots IA (GPTBot, ClaudeBot) et connectez vos outils à LangChain ou CrewAI via MCP.
Questions Fréquemment Posées
Guide technique sur l'authentification, les crédits, les endpoints et les limites de débit.
Commencez à développer dès aujourd'hui avec l'API SEO & AEO de AI Rank Lab
Créez votre compte en quelques secondes. Inclut 100 crédits offerts pour effectuer des recherches SERP en direct, des vérifications de visibilité de marque AEO et des analyses de journaux de visites de bots.