Developer API v1 & Anthropic MCP Endpoint

SEO & AEO API: Automatiza tus flujos de trabajo de búsqueda e 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. Una API REST y un servidor MCP, la misma clave.

POST /api/v1/ai-citation-check
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"]
  }'
Conjuntos de Datos Centrales

El motor de datos sobre el que se ejecutarán tus flujos de trabajo

Combina datos SERP tradicionales de Google con métricas de citación en tiempo real de motores de IA y registros de rastreadores de bots.

Country + Device

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.

4 AI Engines

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.

Any Domain

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.

Real-time Logs

AI Bot Crawler Log Analytics

Inspect live server logs of GPTBot, ClaudeBot, PerplexityBot, Bytespider, and Googlebot traffic to protect IP or ensure indexation.

Instant Keyword Vol

Keyword Universe & SERP Intent

Query monthly search volumes, keyword difficulty (KD), CPC, intent classification (Informational vs Commercial), and AI Overview presence.

Full Technical Health

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.

Zero-Credit Reads

Google Analytics 4 & Search Console

Fetch Google Search Console performance data, keyword clicks, impressions, and GA4 traffic metrics combined with AI search visibility.

Pon la API a trabajar

Diseñado para Pipelines de Automatización y Flujos de Trabajo de IA

Descubre cómo las agencias de marketing, los equipos SEO empresariales y los ingenieros de IA utilizan nuestra API para escalar operaciones.

Use Case #1

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);
Use Case #2

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}`);
}
Use Case #3

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"
Model Context Protocol (MCP)

Consulta AI Rank Lab desde Cualquier Asistente de IA

In addition to REST API endpoints, AI Rank Lab provides a hosted Servidor MCP at POST /api/v1/mcp. Connect Claude Code, Cursor, Windsurf, or custom LangChain/CrewAI agents in seconds.

Configuración JSON de Anthropic MCPHTTP / SSE Transmitible
{
  "mcpServers": {
    "airanklab": {
      "url": "https://www.airanklab.com/api/v1/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY",
        "x-api-secret": "YOUR_API_SECRET"
      }
    }
  }
}
Explorador de API Interactivo

Explora las principales categorías de endpoints de la API

Inspecciona las cargas útiles de solicitudes reales y las estructuras de respuesta JSON en vivo.

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.

POST /ai-citation-check

Cuerpo de la Solicitud (JSON):

{
  "prompt": "best AEO rank tracker",
  "domain": "airanklab.com",
  "engines": ["ChatGPT", "Perplexity", "Claude", "Gemini"],
  "competitors": ["rival.com"]
}

Salida de Respuesta (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"
        }
      ]
    }
  }
}
Soluciones Personalizadas

Integra Datos SEO y AEO en Tu Stack

Ya sea que construyas pipelines de informes para clientes o equipos de agentes de IA autónomos, nuestra API se adapta a tu stack.

Agencias de SEO y Marketing

Automatiza auditorías de clientes de marca blanca, rastrea la cuota de voz de citación AEO y genera paneles de informes automatizados en PDF / Data Studio sin esfuerzo.

Equipos SEO Empresariales

Monitoriza los cambios en el universo de palabras clave, compara las brechas de citación de LLM de la competencia en 54 mercados de búsqueda en escritorio y móvil, y alimenta tus pipelines internos de ciencia de datos.

Desarrolladores e Ingenieros de IA

Alimenta tus pipelines RAG con resultados de búsqueda web en tiempo real, audita el tráfico de rastreadores de bots de IA (GPTBot, ClaudeBot), y conecta herramientas a LangChain o CrewAI a través de MCP.

Preguntas Frecuentes para Desarrolladores

Preguntas Frecuentes

Orientación técnica sobre autenticación, créditos, puntos finales y límites de tasa.

The AI Rank Lab REST API provides programmatic access to our entire search engine & AI intelligence platform. You can programmatically fetch keyword research, SERP rankings, Google AI Overview features, AI search brand citations (ChatGPT, Gemini, Perplexity, Claude), AI bot crawler logs, technical site audits, and Google Analytics 4 / Search Console metrics.

Empieza a desarrollar con la API de SEO y AEO de AI Rank Lab hoy mismo

Crea tu cuenta en segundos. Incluye 100 créditos de cortesía para realizar búsquedas SERP en vivo, verificaciones de visibilidad de marca AEO y análisis de registros de visitas de bots.