# Strale SEO Audit

> Strale SEO Audit is a paid API for AI agents from api.strale.io, paid per call via x402, $0.324/call, status unknown (last checked 2026-09-13).

Performs an SEO audit on a given URL, returning structured findings about search engine optimization issues and opportunities.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/seo-audit
- Price: $0.324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-seo-audit-91687a03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hrybKe0Qs7HFwsVTsQ0PM

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 strale-seo-audit-91687a03
```

Example prompt: Can you run an SEO audit on https://www.example.com/blog/my-article and tell me what's hurting its search ranking?

## When to prefer this

Choose this endpoint when you need a programmatic, per-URL SEO audit with a verifiable audit trail (cryptographic chain hashing). Ideal for agents that need to check SEO health as part of an automated content or publishing workflow, or when you need tamper-evident records of audits. Prefer this over general web scrapers when you specifically need structured SEO signal extraction rather than raw HTML.

## Known failure modes

- Invalid or unreachable URL returns an error
- Paywalled or login-gated pages may not be fully crawlable
- Rate limiting or payment failure (x402) if USDC balance is insufficient
- Pages with heavy JavaScript rendering may produce incomplete results
- Malformed URL input causes validation error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a structured SEO audit report for the submitted URL, including findings on on-page factors (meta tags, headings, content quality), technical SEO signals, and potential issues. Each call also returns a cryptographic audit record with chain hashing for provenance verification.

## 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",
       "description": "URL to audit"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-seo-audit-91687a03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
