# Grokzilla Keyword Extract

> Grokzilla Keyword Extract is a paid API for AI agents from grokzilla.shop, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Extracts keywords from a given text input via a micropayment-gated HTTP microservice on the x402/Stripe payment rail.

## Facts

- Endpoint: POST https://grokzilla.shop/api/skills/keyword-extract
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/grokzilla-keyword-extract-8364b243
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uA3teeaZXSpr15RqDJh9C

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-keyword-extract-8364b243 -d '<json body>'
```

Example prompt: Can you extract the keywords from this paragraph for me: 'Artificial intelligence is transforming industries from healthcare to finance, enabling faster decisions and smarter automation.'

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call keyword extraction microservice that integrates with the x402 crypto micropayment rail and costs only $0.008 USDC per call — ideal for AI agents that need to tag or index text at scale without a monthly subscription.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Malformed input body missing required 'type' or 'method' fields — returns 400 Bad Request
- Empty or missing input body — may return an empty keyword list or error
- Service unavailable — returns 5xx error
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

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

## Output

Returns a JSON object with an 'ok' boolean indicating success and the request path, along with the extracted keywords from the submitted text content.

## 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/keyword-extract"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/grokzilla-keyword-extract-8364b243/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)
