Head & Meta SEO Audit API
GET /api/seo/head-check $0.01 per call
USDC on Base · x402
Head/meta SEO audit: title and description with truncation-length warnings, robots meta (flags NOINDEX), canonical status (self-referencing vs pointing elsewhere), hreflang validation, charset, viewport, favicon, H1 count, lang, OG/Twitter presence. The on-page fundamentals in one call. ?url=
Parameters
| Name | In | Description | |
|---|---|---|---|
url | query | required | Public URL of the page to audit |
Example request
curl "https://api.webbersites.com/api/seo/head-check?url=https%3A%2F%2Fexample.com%2Fpage"
# first call returns 402 + payment requirements; an x402 client pays and retries automaticallyExample response
{
"title": {
"text": "Example Page",
"length": 12
},
"canonical": {
"status": "self-referencing"
},
"h1_count": 1,
"problems": [],
"warnings": [
"Title is only 12 chars"
],
"verdict": "improvable"
}MCP tool: get_seo_head_check — via npx -y webbersites-x402-mcp (local, key stays on your machine) or the remote endpoint https://api.webbersites.com/mcp.
How payment works
There is no signup and no API key. Call the endpoint; it replies 402 Payment Required with machine-readable payment requirements. Your client signs a USDC transfer authorization (EIP-3009, gasless) and retries with the X-PAYMENT header — @x402/fetch does this automatically. See the overview for a working snippet.