# Accessibility Auditor

> Accessibility Auditor is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Reviews HTML snippets for WCAG 2.1 AA accessibility issues and returns findings, severity ratings, and remediation steps

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/glassy_pine/accessibility-auditor
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/accessibility-auditor-5082d36e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eXlZs3Shh6R7DrOYmm556

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 accessibility-auditor-5082d36e -d '<json body>'
```

Example prompt: Audit this HTML snippet for WCAG 2.1 AA accessibility issues and tell me what's broken, how severe each problem is, and how to fix it: <button onclick='submit()'>Click</button>

## When to prefer this

Choose this endpoint when you need automated, AI-driven WCAG 2.1 AA compliance review of HTML snippets with actionable remediation guidance — particularly useful in CI/CD pipelines, code review agents, or developer tooling where quick per-component accessibility feedback is needed without setting up a full accessibility testing framework.

## Known failure modes

- Malformed or incomplete HTML may produce partial results
- Very large HTML snippets may exceed prompt limits and return truncated analysis
- Non-HTML content passed as prompt may yield irrelevant or empty findings
- Network timeout or upstream AI service unavailability returns error
- Missing required 'prompt' field returns validation error

## How this service works

Accessibility Auditor - Reviews HTML snippets for WCAG 2.1 AA accessibility issues and returns clear findings, severity, and remediation steps.

## Output

A structured text response listing accessibility findings per HTML element, each with a WCAG criterion reference, severity level (e.g. critical, serious, moderate, minor), and concrete remediation steps to bring the code into compliance.

## 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": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "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",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/accessibility-auditor-5082d36e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
