# Santos AI Website Intelligence & Agent Readiness Auditor

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

Fetches and audits any public URL for AI agent readiness signals including MCP, llms.txt, OpenAPI, SEO, accessibility, and security, returning structured JSON with evidence and prioritized fixes.

## Facts

- Endpoint: GET https://santosautomation.com/v1/fetch
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/santos-ai-website-intelligence-agent-readiness-auditor-d43dad2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SEsCOmeV3l0FqmvWFhUbV

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 santos-ai-website-intelligence-agent-readiness-auditor-d43dad2a
```

Example prompt: Can you audit https://example.com and tell me whether it's AI agent ready — specifically check for llms.txt, MCP support, OpenAPI specs, SEO signals, accessibility issues, and any security concerns, then give me the prioritized fixes?

## When to prefer this

Use this endpoint when you need a comprehensive, structured AI agent readiness audit of a website — especially when you want to check for llms.txt, MCP, or OpenAPI presence alongside SEO, accessibility, and security signals in a single call. Prefer it over generic web scrapers when the goal is agent-readiness evaluation with prioritized actionable fixes rather than raw content extraction.

## Known failure modes

- Non-public or private URLs return an error or empty body
- Non-text content types (images, PDFs, binaries) are not supported and may return an error
- URL redirects to an unreachable endpoint cause fetch failure
- Rate limiting or payment failure results in HTTP 402
- Malformed URL input causes validation error
- Target site returning 5xx causes the audit to reflect unavailability

## 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

A structured JSON object containing the fetched URL, response body, HTTP status, content type, final URL after redirects, body byte size, schema version, and embedded audit findings covering AI agent readiness signals (MCP, llms.txt, OpenAPI), SEO, accessibility, and security 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": "Public HTTP or HTTPS URL to fetch (text formats only)."
      }
     }
    }
   },
   "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/data.json",
  "body": "{\"hello\":\"world\"}",
  "headers": {
   "content-type": "application/json"
  },
  "final_url": "https://example.com/data.json",
  "body_bytes": 17,
  "http_status": 200,
  "content_type": "application/json",
  "schema_version": "1.0.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/santos-ai-website-intelligence-agent-readiness-auditor-d43dad2a/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)
