# Grokzilla SEO Skill — x402 Micropayment Microservice

> Grokzilla SEO Skill — x402 Micropayment Microservice is a paid API for AI agents from grokzilla.shop, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Performs SEO analysis or optimization tasks via a micropayment-gated HTTP skill endpoint on the x402 payment rail.

## Facts

- Endpoint: POST https://grokzilla.shop/api/skills/seo
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/grokzilla-seo-skill-x402-micropayment-microservice-5ca00289
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RtyRwcdCjoSz4ERkF2ryS

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 grokzilla-seo-skill-x402-micropayment-microservice-5ca00289 -d '<json body>'
```

Example prompt: Run an SEO analysis on my product landing page content — check keyword usage, meta structure, and on-page optimization factors and give me actionable recommendations.

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-call SEO analysis without a subscription, especially in agent workflows that require autonomous micropayment-gated API access via the x402 protocol on Coinbase/Stripe rails. Ideal for agents that process many pages at low cost ($0.012 per call) and need structured JSON SEO results programmatically.

## Known failure modes

- Payment not included or invalid — returns HTTP 402 requiring x402 micropayment
- Malformed input body — missing required 'type' or 'method' fields returns validation error
- Unsupported HTTP method or path — may return 404 or error JSON
- Upstream SEO processing failure — may return ok: false with error detail
- Network timeout if SEO computation takes longer than expected

## How this service works

Agent-ready microservices with x402 + Stripe rails, volume primitives, tutorials, and applet UI.

## Output

Returns a JSON object with ok: true and the request path, along with SEO analysis output such as scores, recommendations, keyword evaluations, or on-page audit findings depending on the input body provided.

## 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": {
    "body": {
     "type": "object"
    },
    "path": {
     "type": "string"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "path": "/api/skills/seo"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/grokzilla-seo-skill-x402-micropayment-microservice-5ca00289/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grokzilla.shop](https://www.zero.xyz/host/grokzilla.shop/llms.txt)
