# AI Website Intelligence & Agent Readiness API by Santos

> AI Website Intelligence & Agent Readiness API by Santos is a paid API for AI agents from santosautomation.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-13).

Audits any public website for AI agent readiness, MCP, llms.txt, OpenAPI, SEO, accessibility, and security, returning structured JSON with scores and prioritized fixes.

## Facts

- Endpoint: GET https://santosautomation.com/api/audit
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-website-intelligence-agent-readiness-api-by-santos-b0cdc997
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tNKRjGJOhMkNVpf_-qJvR

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 ai-website-intelligence-agent-readiness-api-by-santos-b0cdc997
```

Example prompt: Can you audit https://acme.com for AI agent readiness and tell me what SEO, security, and accessibility issues it has, along with the scores?

## When to prefer this

Choose this endpoint when you need a multi-dimensional audit covering AI agent readiness (llms.txt, MCP, OpenAPI), SEO, security headers, and accessibility in a single call with structured JSON output and prioritized fixes — especially when evaluating whether a site is discoverable and usable by AI agents, which generic SEO or Lighthouse tools don't assess.

## Known failure modes

- Invalid or non-public URL returns an error or empty response
- Timeout if the target website is slow or unresponsive
- Private/intranet URLs not reachable from the audit server
- Rate limiting or payment failure with x402 protocol if USDC balance insufficient
- Incomplete results if the target site blocks headless crawlers

## How this service works

Audit any website for AI Agent Readiness, MCP, llms.txt, OpenAPI, SEO, accessibility and security. Structured JSON with evidence and prioritized fixes.

## Output

Returns a JSON object containing the audited URL, a tier label, an overall score, individual scores for SEO, security, performance, and accessibility, the HTTP status of the page, and a list of specific issues found with prioritized fix recommendations.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "The public HTTP or HTTPS website URL to audit."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/",
  "tier": "paid",
  "issues": [
   "Missing canonical link",
   "Missing Content-Security-Policy header"
  ],
  "scores": {
   "seo": 40,
   "security": 33,
   "performance": 100,
   "accessibility": 100
  },
  "http_status": 200,
  "overall_score": 68
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-website-intelligence-agent-readiness-api-by-santos-b0cdc997/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from santosautomation.com](https://www.zero.xyz/host/santosautomation.com/llms.txt)
