# AgentsTools AEO Audit

> AgentsTools AEO Audit is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Performs an AI-search visibility (AEO) audit of a website, computing a composite score 0-100 across six axes: answerability, structured data, AI-crawler access, crawlability, llms.txt readiness, and MCP well-known readiness, plus prioritized fixes.

## Facts

- Endpoint: GET https://api.agentstools.dev/aeo/audit
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentstools-aeo-audit-885019c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cC4hUxkrNjvHnl-TDkESB

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 agentstools-aeo-audit-885019c7
```

Example prompt: Run a full AEO audit on https://mybrand.com — I want to see the composite AI-visibility score, the breakdown across answerability, structured data, AI-crawler access, crawlability, llms.txt, and MCP well-known readiness, and a prioritized list of fixes.

## When to prefer this

Use this endpoint when you need a deterministic, multi-axis AEO/AI-visibility audit of a public website without relying on any LLM inference. Prefer it over generic SEO tools when the focus is specifically on answer engine optimization, AI-crawler access, llms.txt presence, and MCP well-known readiness.

## Known failure modes

- Invalid or unreachable URL returns an error or low-confidence result
- Private or localhost URLs may not be fetchable
- Sites blocking all crawlers may yield incomplete sub-scores
- Missing or malformed query parameters (no url/host/domain) returns a validation error
- Rate limiting or payment failure (402) if USDC credit is insufficient

## How this service works

AI-search visibility (AEO) audit of a website for answer engines and agents. Fetches the target's own public surface and computes a composite visibility score 0-100 with a rating (poor, fair, good, excellent) across six axes: answerability, structured data, AI-crawler access, crawlability, llms.txt readiness and MCP well-known readiness, plus a prioritized list of fixes. Deterministic, no LLM. Visibility indicators, not a guarantee.

## Output

Returns a composite visibility score from 0-100 with a rating (poor, fair, good, or excellent), sub-scores across six axes (answerability, structured data, AI-crawler access, crawlability, llms.txt readiness, MCP well-known readiness), and a prioritized list of actionable fixes. Results are deterministic and based on the site's own public surface.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "url": {
       "type": "string",
       "description": "Target URL to audit (e.g. https://example.com)"
      },
      "host": {
       "type": "string",
       "description": "Alternative input: a hostname"
      },
      "domain": {
       "type": "string",
       "description": "Alternative input: a bare domain (e.g. example.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentstools-aeo-audit-885019c7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
