# Convrgent AEO/GEO Deep Audit

> Convrgent AEO/GEO Deep Audit is a paid API for AI agents from scan.convrgent.ai, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Performs a deep 67+ check audit of a website's AI search visibility, structured data, and agent-readiness signals across 12 categories

## Facts

- Endpoint: POST https://scan.convrgent.ai/api/aeo/audit
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scan-convrgent-ai-c7f45a83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fS4kTx4rkl60mEAMNQnHA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability scan-convrgent-ai-c7f45a83 -d '<json body>'
```

Example prompt: Run a full AI search visibility audit on https://mybrand.com — check all 67+ signals including JSON-LD schema, meta tags, llms.txt, robots.txt, sitemap, and agent-discovery readiness for ChatGPT, Perplexity, and Google AI Overviews, scanning 3 pages.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-category deep audit with per-page breakdown and 67+ checks — as opposed to a quick triple-score scan. Use this when the user needs detailed diagnostic data across all AI visibility signals including structured data, agent files, and content quality, rather than just a summary scorecard.

## Known failure modes

- Invalid or unreachable URL returns error with crawl failure message
- maxPages exceeding limits may be capped or return partial results
- Payment failure via x402 protocol results in 402 response before audit runs
- Sites with aggressive bot-blocking may return incomplete crawl data
- Timeout on slow-loading sites may yield partial per-page results

## How this service works

Scanner for AI search visibility (AEO, GEO) and agent readiness — audits JSON-LD Schema.org structured data, meta tags, robots.txt, llms.txt, sitemap, content quality, and agent-discovery signals for discoverability in ChatGPT, Perplexity, Google AI Overviews, and Bing Copilot. 77+ checks across 12 categories with per-page breakdown.

## Output

Returns a comprehensive audit report covering 67+ checks across 12 categories: JSON-LD Schema.org structured data coverage, meta tag completeness, robots.txt configuration, llms.txt presence and validity, sitemap status, content quality scores, and agent-discovery signals — with per-page breakdowns and discoverability scores for ChatGPT, Perplexity, Google AI Overviews, and Bing Copilot.

## Example request

```json
{
 "url": "https://example.com",
 "maxPages": 1
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Full URL of the site to audit"
      },
      "maxPages": {
       "type": "integer",
       "default": 10,
       "maximum": 10,
       "minimum": 1,
       "description": "Maximum pages to crawl (1-10)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "product": {
       "type": "string"
      },
      "aeoGrade": {
       "type": "string"
      },
      "aeoScore": {
       "type": "integer"
      },
      "topIssues": {
       "type": "array"
      },
      "categories": {
       "type": "array"
      },
      "geoReadiness": {
       "type": "object"
      },
      "pagesScanned": {
       "type": "integer"
      },
      "agentReadiness": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "product": "AEO",
  "aeoGrade": "B",
  "aeoScore": 73,
  "topIssues": [
   {
    "name": "Organization Schema",
    "message": "Missing description field",
    "severity": "critical"
   }
  ],
  "categories": [
   {
    "label": "Structured Data",
    "score": 84,
    "category": "structured-data"
   }
  ],
  "geoReadiness": {
   "grade": "D",
   "score": 45
  },
  "pagesScanned": 5,
  "agentReadiness": {
   "grade": "C",
   "score": 62
  },
  "aiIdentityCard": {
   "brandName": "Example Corp",
   "confidence": "medium"
  },
  "businessProfile": {
   "label": "SaaS / Developer Tools",
   "profile": "saas"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scan-convrgent-ai-c7f45a83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scan.convrgent.ai](https://www.zero.xyz/host/scan.convrgent.ai/llms.txt)
