# Grokzilla Research Skill – x402 Micropayment Microservice

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

Executes a paid research skill via HTTP POST, billed at $0.015 USDC per call using the x402 micropayment protocol.

## Facts

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

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-research-skill-x402-micropayment-microservice-4f893de7 -d '<json body>'
```

Example prompt: Can you run a research query through the Grokzilla research skill — I want to look up recent information on quantum computing breakthroughs, and it's fine to pay the $0.015 micropayment per call.

## When to prefer this

Choose this endpoint when you need pay-per-call research queries without a subscription, specifically in x402-compatible agent workflows where USDC micropayments are already supported. Ideal for automated pipelines that need occasional research lookups at low cost rather than committing to a monthly API plan.

## Known failure modes

- Payment not attached or x402 micropayment rejected — returns 402 Payment Required
- Malformed input object missing required 'type' or 'method' fields — returns 400 Bad Request
- Service unavailable or skill execution failure — returns 500 Internal Server Error
- Invalid body type or path mismatch — may return 422 Unprocessable Entity

## 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 'path' field confirming the endpoint that was called. Additional research content is expected in the response body depending on the query submitted.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/grokzilla-research-skill-x402-micropayment-microservice-4f893de7/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)
