# HubVibe WCAG 2.1 Accessibility Audit

> HubVibe WCAG 2.1 Accessibility Audit is a paid API for AI agents from hubvibe-io.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Runs an axe-core-powered WCAG 2.1 Level A/AA accessibility audit against a given URL and returns violations, warnings, and passes.

## Facts

- Endpoint: POST https://hubvibe-io.com/audit/wcag
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hubvibe-wcag-2-1-accessibility-audit-6ea5b38a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_erG5pqz7UboGfLCSd-U5N

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 hubvibe-wcag-2-1-accessibility-audit-6ea5b38a -d '<json body>'
```

Example prompt: Can you run a WCAG 2.1 AA accessibility audit on https://example.com/checkout and tell me what violations axe-core finds?

## When to prefer this

Choose this endpoint when you need a fast, standards-based WCAG 2.1 A/AA accessibility scan powered by axe-core on a single URL. It is ideal for pre-launch checks, CI/CD regression testing, or one-off compliance audits. If you need a combined audit covering SEO, security, and performance in addition to accessibility in a single call, prefer the hubvibe-io.com bundle endpoint instead.

## Known failure modes

- URL is unreachable or returns a non-200 status — audit cannot proceed
- Page requires authentication and the crawler cannot log in — partial or empty results
- JavaScript-heavy SPAs may not fully render before audit runs — some dynamic violations may be missed
- Malformed or non-HTTP URL provided — validation error returned
- Timeout if the target page is slow to load

## How this service works

Website accessibility audit (a11y, WCAG compliance check): WCAG 2.1 level A and AA conformance of any live URL or raw HTML, tested with axe-core in a real headless browser. Returns every violation with rule id, impact, help text and affected node count. Deterministic rules; a check that cannot run returns an error, never a pass.

## Output

Returns a structured list of WCAG 2.1 A/AA violations found on the page, including rule IDs (e.g. 'color-contrast', 'image-alt'), impact severity (critical, serious, moderate, minor), affected HTML elements or selectors, and a description of the issue along with remediation hints. Also includes counts of passing and failing rules.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "examples": [
    "https://example.com"
   ],
   "description": "Live, fetchable http(s) URL to audit."
  },
  "html": {
   "type": "string",
   "description": "Raw HTML source to audit instead of fetching a URL."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hubvibe-wcag-2-1-accessibility-audit-6ea5b38a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hubvibe-io.com](https://www.zero.xyz/host/hubvibe-io.com/llms.txt)
