SEO & AEO API:
अपने खोज और AI वर्कफ़्लो को स्वचालित करें
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. एक REST API और एक MCP सर्वर, एक ही कुंजी।
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"]
}'वह डेटा इंजन जिस पर आपके वर्कफ़्लो चलेंगे
पारंपरिक Google SERP डेटा को वास्तविक समय की AI इंजन उद्धरण मेट्रिक्स और बॉट क्रॉलर लॉग के साथ मिलाएं।
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.
ऑटोमेशन पाइपलाइन और AI वर्कफ़्लो के लिए निर्मित
देखें कि मार्केटिंग एजेंसियां, एंटरप्राइज SEO टीमें और AI इंजीनियर संचालन को बढ़ाने के लिए हमारी API का उपयोग कैसे करते हैं।
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"किसी भी AI असिस्टेंट के भीतर से AI Rank Lab को क्वेरी करें
In addition to REST API endpoints, AI Rank Lab provides a hosted 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"
}
}
}
}मुख्य API एंडपॉइंट श्रेणियों को एक्सप्लोर करें
वास्तविक अनुरोध पेलोड और लाइव JSON प्रतिक्रिया संरचनाओं की जांच करें।
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.
अनुरोध बॉडी (JSON):
{
"prompt": "best AEO rank tracker",
"domain": "airanklab.com",
"engines": ["ChatGPT", "Perplexity", "Claude", "Gemini"],
"competitors": ["rival.com"]
}प्रतिक्रिया आउटपुट (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"
}
]
}
}
}अपने स्टैक में SEO और AEO डेटा लाएं
चाहे आप क्लाइंट रिपोर्टिंग पाइपलाइन बनाएं या स्वायत्त AI एजेंट स्क्वाड, हमारी API आपके स्टैक में फिट बैठती है।
SEO और मार्केटिंग एजेंसियां
व्हाइट-लेबल क्लाइंट ऑडिट को स्वचालित करें, AEO उद्धरण शेयर ऑफ वॉयस को ट्रैक करें, और स्वचालित PDF / Data Studio रिपोर्टिंग डैशबोर्ड सहजता से जेनरेट करें।
एंटरप्राइज SEO टीमें
कीवर्ड यूनिवर्स में बदलावों को ट्रैक करें, डेस्कटॉप और मोबाइल पर 54 सर्च मार्केट में प्रतिस्पर्धियों के LLM उद्धरण अंतरों का बेंचमार्क करें, और आंतरिक डेटा साइंस पाइपलाइनों को शक्ति प्रदान करें।
डेवलपर्स और एआई इंजीनियर्स
RAG पाइपलाइनों को वास्तविक समय के वेब खोज परिणामों से फ़ीड करें, एआई बॉट क्रॉलर ट्रैफ़िक (GPTBot, ClaudeBot) का ऑडिट करें, और MCP पर LangChain या CrewAI से टूल कनेक्ट करें।
अकसर पूछे जाने वाले प्रश्न
प्रमाणीकरण, क्रेडिट्स, एंडपॉइंट्स और दर सीमाओं पर तकनीकी मार्गदर्शन।
AI Rank Lab के SEO और AEO API के साथ आज ही निर्माण शुरू करें।
सेकंडों में अपना खाता बनाएँ। इसमें लाइव SERP लुकअप, AEO ब्रांड दृश्यता जाँच और बॉट विज़िट लॉग एनालिटिक्स चलाने के लिए 100 मानार्थ क्रेडिट शामिल हैं।