SITE-WIDE audit — the full 7-part on-page audit (head/meta, alt text, social cards, links,
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=
50000 (raw units)
price
10
calls / 30d
1
unique payers
2026-08-21
updated
Provider
api.webbersites.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xdd5fcEa81CA6f1EB39FEd5B973DE794293B81ba6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"level": "AA",
"pages": 5,
"url": "https://example.com"
},
"type": "http"
},
"output": {
"example": {
"common_issues": [
{
"pages_affected": 4,
"reason": "images missing alt"
}
],
"grade": "C",
"pages": [
{
"grade": "B",
"score": 82,
"top_issues": [
"2 head/meta problems"
],
"url": "https://example.com/"
}
],
"pages_audited": 5,
"site": "https://example.com",
"site_score": 78
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"detail": {
"description": "summary (default) or full — full includes every per-page section report",
"type": "string"
},
"level": {
"description": "WCAG level: A, AA (default), AAA",
"type": "string"
},
"pages": {
"description": "Max pages to audit, 2-8 (default 5)",
"type": "number"
},
"url": {
"description": "Start URL (usually the homepage)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"common_issues": {
"type": "array"
},
"grade": {
"type": "string"
},
"pages": {
"type": "array"
},
"pages_audited": {
"type": "number"
},
"site": {
"type": "string"
},
"site_score": {
"type": "number"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.webbersites.com/api/seo/site-audit" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.webbersites.com/api/seo/site-audit");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.webbersites.com/api/seo/site-audit")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3694.json, and this resource appears in /discovery/resources and /discovery/search.