# Santos Automation Web Page Auditor

> Santos Automation Web Page Auditor is a paid API for AI agents from api.santosautomation.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-13).

Runs a lightweight audit of a single public URL, returning 0-100 scores and pass/fail checks across performance, SEO, accessibility, and security-header categories with plain-English remediation guidance.

## Facts

- Endpoint: GET https://api.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/santos-automation-web-page-auditor-aa3c46f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h2AY1WnshqCdM5TnAe46Q

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-automation-web-page-auditor-aa3c46f3
```

Example prompt: Can you run a full technical audit on https://www.example.com and tell me the performance, SEO, accessibility, and security-header scores along with anything I should fix?

## When to prefer this

Choose this endpoint when you need a quick, multi-dimensional technical health check on a single public web page — covering performance, SEO, accessibility, and security headers in one call — without needing a full site crawl or a heavyweight tool like Lighthouse via headless browser. Ideal for on-demand checks in CI pipelines, content publishing workflows, or agent-driven site monitoring.

## Known failure modes

- URL is not publicly accessible (private, localhost, or behind auth) — audit cannot fetch the page
- Invalid or malformed URL provided — request is rejected
- Target page returns a non-200 status (e.g. 404, 500) — audit may return partial or empty results
- Page load times out — timing data may be incomplete
- URL points to a non-HTML resource (e.g. a PDF or image) — HTML/SEO/accessibility checks may be meaningless

## 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 numeric 0-100 category scores for performance, SEO, accessibility, and security headers; a list of individual pass/fail checks; detected issues on the page; and plain-English remediation guidance for each problem found.

## 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/santos-automation-web-page-auditor-aa3c46f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.santosautomation.com](https://www.zero.xyz/host/api.santosautomation.com/llms.txt)
