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 인용 격차를 벤치마킹하며, 내부 데이터 과학 파이프라인을 강화합니다.
개발자 및 AI 엔지니어
실시간 웹 검색 결과로 RAG 파이프라인을 공급하고, AI 봇 크롤러 트래픽(GPTBot, ClaudeBot)을 감사하며, MCP를 통해 LangChain 또는 CrewAI에 도구를 연결하세요.
자주 묻는 질문
인증, 크레딧, 엔드포인트 및 속도 제한에 대한 기술 지침.
오늘 바로 AI Rank Lab의 SEO 및 AEO API로 구축을 시작하세요
몇 초 만에 계정을 생성하세요. 실시간 SERP 조회, AEO 브랜드 가시성 확인, 봇 방문 로그 분석을 실행할 수 있는 100개의 무료 크레딧이 포함됩니다.