# x402-zadenworks Page Audit

> x402-zadenworks Page Audit is a paid API for AI agents from x402-zadenworks.zaden-gaming.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Runs a comprehensive page health check combining SEO, structured data, accessibility, and optionally links and sitemap into a single scored report with worst-first findings.

## Facts

- Endpoint: POST https://x402-zadenworks.zaden-gaming.workers.dev/audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-zadenworks-page-audit-162fdd15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dsEVuz6F3fXw2mUs7hea4

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 x402-zadenworks-page-audit-162fdd15 -d '<json body>'
```

Example prompt: Can you do a full health check on https://mystore.com — I want a single score plus a worst-first list of SEO, accessibility, and structured data issues, and also check all the links and the sitemap while you're at it?

## When to prefer this

Use this /audit endpoint when you want a single consolidated health score and merged findings list across all checks in one call rather than calling each sub-endpoint (/seo, /a11y, /structured, etc.) individually. It is the most cost-efficient path when you need a full-picture report. Prefer individual sub-endpoints only when you need granular, isolated results for a specific check type.

## Known failure modes

- URL is unreachable or returns non-200 status — audit may return partial results or an error
- Page requires authentication — crawler cannot access gated content
- Very large or slow pages may timeout before all checks complete
- Invalid URL format causes a 400-level validation error
- Sitemap or robots.txt absent when includeSitemap is true — that check returns no findings

## How this service works

Fourteen pay-per-call web tools for AI agents, billed in USDC on Base with no account or API key. START WITH /audit -- one call returns a complete page health check (SEO + structured data + accessibility, optionally plus links and sitemap) with a single score and one worst-first findings list. The parts are also sold individually. SITE AUDIT: /seo (on-page SEO and meta tags), /links (broken links), /sitemap (robots.txt and XML sitemap crawlability), /structured (JSON-LD and social preview tags), /a11y (WCAG accessibility) -- each scored 0-100 with a prioritised issue list. READING: /read (clean markdown), /snap (screenshot, PDF or rendered HTML), /tables (every HTML table as structured JSON), /verify (does a claim actually appear on this page). MONITORING: /watch (has this page changed), /compare (what differs between two pages). Plus /rank (best x402 service for a task) and /batch (several operations behind one payment).

## Output

A JSON object containing the audited URL, an overall score from 0–100, a list of findings sorted worst-first (each with check name, issue description, and severity), and an array of which checks were run. Optional link and sitemap findings are included when those flags are set.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Page to audit"
      },
      "includeLinks": {
       "type": "boolean",
       "description": "Also check every link on the page"
      },
      "includeSitemap": {
       "type": "boolean",
       "description": "Also audit robots.txt and the XML sitemap"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/",
  "findings": [
   {
    "check": "a11y",
    "issue": "2 of 4 image(s) are missing an \"alt\" attribute.",
    "severity": "critical"
   }
  ],
  "checksRun": [
   "seo",
   "structured",
   "a11y"
  ],
  "overallScore": 74,
  "totalFindings": 6
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-zadenworks-page-audit-162fdd15/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-zadenworks.zaden-gaming.workers.dev](https://www.zero.xyz/host/x402-zadenworks.zaden-gaming.workers.dev/llms.txt)
