# agent-ready.dev Website AI-Readiness Scanner

> agent-ready.dev Website AI-Readiness Scanner is a paid API for AI agents from agent-ready.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Scans a public website URL and scores it against the Vercel Agent Readability Spec and llmstxt.org standard, returning a grade, numeric score, and actionable improvement recommendations.

## Facts

- Endpoint: POST https://agent-ready.dev/api/x402/scan
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-ready-dev-website-ai-readiness-scanner-93a032ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_go1uF5AxPkGjEs45WTZC2

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 agent-ready-dev-website-ai-readiness-scanner-93a032ca -d '<json body>'
```

Example prompt: Can you scan https://example.com and grade it against the Vercel Agent Readability Spec and llmstxt.org standard? I want to know the score and what I should fix to make it AI-agent friendly.

## When to prefer this

Use this endpoint when you need to audit a specific website's compliance with the Vercel Agent Readability Spec and/or the llmstxt.org standard, and want a letter grade plus actionable fixes. Prefer this over generic SEO or accessibility scanners when the goal is specifically AI-agent discoverability and LLM-friendliness of a site.

## Known failure modes

- Invalid or non-public URL returns an error
- URL is unreachable or returns non-200 status — scan cannot complete
- Malformed input (missing url field) results in validation error
- Rate limiting or payment failure at $0.02 USDC per call via x402 protocol

## How this service works

Pay-per-scan AI agent-readability scan. POST { "url": "https://…" } with an X-PAYMENT header to run a scan with no account or subscription. Two tiers: $0.02 (25 pages) and $0.25 (250 pages), USDC on Base.

## Output

Returns a JSON object containing a letter grade (e.g. 'B'), a numeric Vercel score (e.g. 70), and a share URL linking to the full scan results page with actionable recommendations.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Public http(s) URL of the site to scan."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "scan": {
   "grade": "B",
   "vercelScore": 70
  },
  "shareUrl": "/scan/abc123"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-ready-dev-website-ai-readiness-scanner-93a032ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-ready.dev](https://www.zero.xyz/host/agent-ready.dev/llms.txt)
