# Mudko Full-Site Quality Audit

> Mudko Full-Site Quality Audit is a paid API for AI agents from mudko.com, paid per call via x402, $5/call, status unknown (last checked 2026-09-14).

Runs a comprehensive 22-check audit of a webpage across SEO, accessibility, and security headers, returning per-section scores (0–100) and copy-paste fixes for every finding.

## Facts

- Endpoint: GET https://mudko.com/api/x402/audit
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mudko-full-site-quality-audit-9bd78c76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FKCZ7iTiorjcXgNq73xSF

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 mudko-full-site-quality-audit-9bd78c76
```

Example prompt: Can you run a full quality audit on https://example.com and tell me what's wrong with its SEO, accessibility, and security headers — with specific fixes I can copy and paste?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-dimensional quality report (SEO + accessibility + security headers) for a specific URL in a single paid call, especially when you want copy-paste fix recommendations rather than just raw scores. Prefer this over free or partial auditors when thoroughness across all three dimensions matters and a one-time $5 cost is acceptable.

## Known failure modes

- Missing or invalid 'url' query parameter returns an error
- Unreachable or non-existent URL may return a fetch error or empty findings
- SPA-rendered pages may be noted as shell-only with limited findings
- Malformed URL schemes may be rejected
- Rate limits or payment failure may prevent the audit from running

## How this service works

Full site quality audit across SEO (titles, descriptions, canonical, Open Graph, JSON-LD…), accessibility (alt text, form labels, heading order, landmarks…) and security headers (HSTS, CSP, XCTO…) — scored 0-100 per section with a copy-paste fix for every finding. $5 per audit. Fetch-based (served HTML; SPA shells noted). The agent-readiness scan is separate and free at /api/x402/deep-scan.

## Output

Returns a structured audit report with three section scores (SEO, accessibility, security headers) each on a 0–100 scale, an overall composite score, and a findings array where each finding includes the check name, pass/fail status, and a ready-to-use fix suggestion. SPA shells are flagged. Costs $5 USDC per call.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Page URL to audit (required)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "seo": {
       "type": "object"
      },
      "a11y": {
       "type": "object"
      },
      "headers": {
       "type": "object"
      },
      "overall": {
       "type": "number"
      },
      "findings": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mudko-full-site-quality-audit-9bd78c76/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mudko.com](https://www.zero.xyz/host/mudko.com/llms.txt)
