{
  "x402Version": 2,
  "id": 5327,
  "slug": "5327",
  "resource": "https://agente.revenuerecoveryai.app/v1/seo/audit/deep",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x464374fB066F08273740e99Ad5c07B92d8aC665F",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "500000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "agente.revenuerecoveryai.app",
  "lastUpdated": "2026-09-14T22:17:50.477Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-14T22:17:50.26Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "agente.revenuerecoveryai.app",
    "manifest_name": "agente.revenuerecoveryai.app",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}