# x402 Micro Pay — Humanless Microservices (nicje skill)

> x402 Micro Pay — Humanless Microservices (nicje skill) is a paid API for AI agents from grokzilla.shop, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Executes the 'nicje' skill microservice via x402 payment rails, returning JSONL-formatted evaluation set rows for agent pipelines.

## Facts

- Endpoint: POST https://grokzilla.shop/api/skills/nicje
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-micro-pay-humanless-microservices-nicje-skill-cd447214
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DfJdONT5fe_FDCXiUc9Ci

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-micro-pay-humanless-microservices-nicje-skill-cd447214 -d '<json body>'
```

Example prompt: Call the nicje skill on the grokzilla humanless microservice platform using an HTTP POST with no body to get back a JSONL evaluation set row for my agent pipeline.

## When to prefer this

Choose this endpoint when you need to invoke the specific 'nicje' skill on the grokzilla x402 microservice platform to retrieve JSONL-formatted evaluation set rows for agent pipelines, and you are already operating within the x402/Stripe micropayment ecosystem. It is distinct from generic data APIs in that it is agent-native, pay-per-call, and returns structured recipe-tagged output.

## Known failure modes

- Payment failure or insufficient USDC balance triggers x402 payment error
- Invalid or missing 'type' field (must be 'http') causes schema validation error
- Unsupported HTTP method string causes rejection
- Malformed body or bodyType mismatch results in parsing error
- Skill 'nicje' unavailable or deprecated returns 404 or empty response

## How this service works

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

## Output

Returns a JSON object containing a JSONL-encoded row with an id and text field, the skill name ('nicje'), the recipe name ('eval_set'), and an agent_kind boolean flag indicating the output is intended for agent consumption.

## 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": {
  "jsonl": "{\"id\":\"1\",\"text\":\"example row\"}",
  "skill": "nicje",
  "recipe": "eval_set",
  "agent_kind": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-micro-pay-humanless-microservices-nicje-skill-cd447214/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)
