# x402 SEO Audit

> x402 SEO Audit is a paid API for AI agents from seo.cyberwarex.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches a live URL and performs a comprehensive on-page SEO audit returning a 0-100 score with actionable issues covering meta tags, Open Graph, headings, images, and more.

## Facts

- Endpoint: GET https://seo.cyberwarex.com/audit
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-seo-audit-9696e4b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9Xydrmqk-phfYvfSXrt7V

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 x402-seo-audit-9696e4b9
```

Example prompt: Can you run a full on-page SEO audit on https://example.com/blog/my-post and tell me the score plus any issues with the title, meta description, Open Graph tags, headings, and image alts?

## When to prefer this

Choose this endpoint when you need a fast, automated, single-page on-page SEO audit covering all standard signals (meta, Open Graph, Twitter cards, headings, images) in one call. It is ideal for agents that need a quick, scored health-check of a specific URL before publishing, after changes, or for competitive analysis. Prefer this over manual checklists or full-site crawlers when you need per-URL, real-time results with an actionable issues list without setting up a dedicated SEO platform.

## Known failure modes

- URL is unreachable or returns non-200 HTTP status — audit cannot proceed
- URL returns a redirect loop or times out during fetch
- Malformed or non-URI input causes request rejection
- Dynamically rendered (JavaScript-heavy) pages may yield incomplete metadata if content is not in the initial HTML
- Rate limiting or payment failure (x402) preventing the call from completing

## How this service works

On-page SEO audit of any live URL: title/meta/canonical/robots, Open Graph + Twitter cards, headings, image alts, favicon — with a 0-100 score and actionable issues. Fetches and parses the live page on every call.

## Output

Returns a 0-100 SEO score along with a structured breakdown of on-page elements: title tag presence and content, meta description, canonical URL, robots meta directives, Open Graph tags (og:title, og:description, og:image, etc.), Twitter card tags, heading hierarchy (H1–H6), image alt attribute coverage, and favicon detection. Includes a list of actionable issues flagging missing, malformed, or suboptimal elements.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Absolute http(s) URL of the page to audit."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "score": {
       "type": "integer",
       "description": "Overall on-page SEO score, 0-100."
      },
      "title": {
       "type": [
        "string",
        "null"
       ]
      },
      "robots": {
       "type": [
        "string",
        "null"
       ]
      },
      "canonical": {
       "type": [
        "string",
        "null"
       ]
      },
      "h1_h3_map": {
       "type": "object",
       "description": "Arrays of h1, h2 and h3 heading text."
      },
      "title_length": {
       "type": "integer"
      },
      "meta_description": {
       "type": [
        "string",
        "null"
       ]
      },
      "image_alt_coverage": {
       "type": "object",
       "description": "total_images, with_alt, missing_alt, coverage_pct."
      },
      "schema_org_present": {
       "type": "boolean"
      },
      "og_twitter_complete": {
       "type": "boolean"
      },
      "meta_description_length": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-seo-audit-9696e4b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seo.cyberwarex.com](https://www.zero.xyz/host/seo.cyberwarex.com/llms.txt)
