# WebberSites Site-Wide SEO Audit

> WebberSites Site-Wide SEO Audit is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14, last successful call 2026-08-10).

Runs a full 7-part on-page SEO and accessibility audit across up to 8 pages of a single website, returning per-page scores, a site-level score, grade, and cross-page common issues.

## Facts

- Endpoint: GET https://api.webbersites.com/api/seo/site-audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-10
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webbersites-site-wide-seo-audit-7b67396d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NFDHHnyo5H_JpPibVwW5R

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 webbersites-site-wide-seo-audit-7b67396d
```

Example prompt: Can you do a full site-wide SEO and accessibility audit of https://www.example.com — crawl up to 6 pages, check WCAG AA compliance, and give me the overall score, grade, and any issues that keep showing up across pages?

## When to prefer this

Use this endpoint when you need a holistic, multi-page verdict on a website's SEO and accessibility health in a single API call, rather than auditing individual pages one at a time. Ideal when the user wants to understand site-wide patterns, repeated issues, and an overall grade — not just a single URL's metrics. Prefer this over the single-page head/meta or WCAG endpoints when scope is the whole site.

## Known failure modes

- Invalid or unreachable start URL returns an error with no audit data
- Pages parameter outside 2–8 range may be rejected or clamped
- Private or login-gated sites return incomplete audits as internal links may not be crawlable
- Very large or slow sites may time out before completing all requested pages
- Invalid WCAG level value (not A, AA, or AAA) may cause a validation error

## How this service works

SITE-WIDE audit — the full 7-part on-page audit (head/meta, alt text, social cards, links, WCAG, schema.org, robots) run across up to 8 pages of one site in a single call. Discovers pages from the start URL's internal links, audits each, and returns per-page scores plus a site-level score, grade, and the issues that repeat across pages. The finished deliverable: one call, whole-site verdict. ?url=&pages=&level=&detail=

## Output

Returns a JSON object with the site URL, a letter grade, a numeric site-level score, the number of pages audited, an array of per-page audit results (each with their own scores and section findings), and an array of common issues that appear repeatedly across multiple pages — covering head/meta, alt text, social cards, links, WCAG, schema.org, and robots directives.

## 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": "Start URL (usually the homepage)"
      },
      "level": {
       "type": "string",
       "description": "WCAG level: A, AA (default), AAA"
      },
      "pages": {
       "type": "number",
       "description": "Max pages to audit, 2-8 (default 5)"
      },
      "detail": {
       "type": "string",
       "description": "summary (default) or full — full includes every per-page section report"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "site": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "pages": {
       "type": "array"
      },
      "site_score": {
       "type": "number"
      },
      "common_issues": {
       "type": "array"
      },
      "pages_audited": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "site": "https://example.com",
  "grade": "C",
  "pages": [
   {
    "url": "https://example.com/",
    "grade": "B",
    "score": 82,
    "top_issues": [
     "2 head/meta problems"
    ]
   }
  ],
  "site_score": 78,
  "common_issues": [
   {
    "reason": "images missing alt",
    "pages_affected": 4
   }
  ],
  "pages_audited": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webbersites-site-wide-seo-audit-7b67396d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webbersites.com](https://www.zero.xyz/host/api.webbersites.com/llms.txt)
