Deep SEO/AEO audit: everything in the basic audit plus heading hierarchy analysis, interna
Deep SEO/AEO audit: everything in the basic audit plus heading hierarchy analysis, internal/external link profile, content depth, schema.org type inventory and an AI-written prioritized roadmap. Auditoría SEO/AEO profunda: todo lo del nivel básico más análisis de jerarquía de encabezados, perfil de enlaces internos/externos, profundidad del contenido, inventario de tipos schema.org y una hoja de ruta priorizada escrita por IA.
500000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
updated
Provider
agente.revenuerecoveryai.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x464374fB066F08273740e99Ad5c07B92d8aC665F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "500000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"idioma": "es",
"url": "https://ejemplo.com/pagina"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"analizado_en": "2026-09-14T18:00:00+00:00",
"carencias": [
"Falta la meta description."
],
"checks": [
{
"check": "title",
"detalle": "<title> presente (42 caracteres).",
"estado": "ok"
},
{
"check": "meta_description",
"detalle": "Falta la meta description.",
"estado": "fallo"
}
],
"grade": "C",
"hoja_de_ruta": [],
"paginas_analizadas": 1,
"recomendaciones": [
"Escribe una meta description de 120-160 caracteres que invite al clic."
],
"score": 72,
"sugerencias": [
{
"campo": "meta_description",
"caracteres": 48,
"texto": "Ejemplo de meta description generada por IA."
}
],
"url": "https://ejemplo.com/pagina",
"uso": {
"analisis": "deterministico",
"profundo": false
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"idioma": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "es",
"description": "Idioma de las recomendaciones (ej. 'es', 'en').",
"title": "Idioma"
},
"url": {
"description": "URL pública a auditar.",
"maxLength": 2048,
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "PeticionSeoAudit",
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"analizado_en": {
"title": "Analizado En",
"type": "string"
},
"carencias": {
"items": {
"type": "string"
},
"title": "Carencias",
"type": "array"
},
"checks": {
"items": {
"properties": {
"check": {
"title": "Check",
"type": "string"
},
"detalle": {
"title": "Detalle",
"type": "string"
},
"estado": {
"enum": [
"ok",
"aviso",
"fallo"
],
"title": "Estado",
"type": "string"
}
},
"required": [
"check",
"estado",
"detalle"
],
"title": "CheckSeo",
"type": "object"
},
"title": "Checks",
"type": "array"
},
"grade": {
"description": "A | B | C | D | F",
"title": "Grade",
"type": "string"
},
"hoja_de_ruta": {
"description": "Solo en deep: plan priorizado escrito por IA.",
"items": {
"type": "string"
},
"title": "Hoja De Ruta",
"type": "array"
},
"paginas_analizadas": {
"default": 1,
"title": "Paginas Analizadas",
"type": "integer"
},
"recomendaciones": {
"items": {
"type": "string"
},
"title": "Recomendaciones",
"type": "array"
},
"score": {
"maximum": 100,
"minimum": 0,
"title": "Score",
"type": "integer"
},
"sugerencias": {
"items": {
"properties": {
"campo": {
"description": "title | meta_description",
"title": "Campo",
"type": "string"
},
"caracteres": {
"title": "Caracteres",
"type": "integer"
},
"texto": {
"title": "Texto",
"type": "string"
}
},
"required": [
"campo",
"texto",
"caracteres"
],
"title": "SugerenciaSeo",
"type": "object"
},
"title": "Sugerencias",
"type": "array"
},
"url": {
"title": "Url",
"type": "string"
},
"uso": {
"additionalProperties": true,
"title": "Uso",
"type": "object"
}
},
"required": [
"url",
"score",
"grade",
"checks",
"carencias",
"recomendaciones",
"sugerencias",
"analizado_en",
"uso"
],
"title": "RespuestaSeoAudit",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agente.revenuerecoveryai.app/v1/seo/audit/deep" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agente.revenuerecoveryai.app/v1/seo/audit/deep");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agente.revenuerecoveryai.app/v1/seo/audit/deep")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5327.json, and this resource appears in /discovery/resources and /discovery/search.