# x402-zoo Story Seed Generator

> x402-zoo Story Seed Generator is a paid API for AI agents from x402-zoo.lolagent.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Generates a fictional structured story prompt with protagonist, goal, obstacle, setting, and twist via a paid GET endpoint.

## Facts

- Endpoint: GET https://x402-zoo.lolagent.workers.dev/api/story-seed
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-zoo-story-seed-generator-0fe842ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T4s9AU6HBOP24k7txJ2hb

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-zoo-story-seed-generator-0fe842ad
```

Example prompt: Give me a structured story seed for a thriller genre with a dark tone — I need a protagonist, goal, obstacle, setting, and a surprising twist.

## When to prefer this

Choose this endpoint when you need a fully structured fictional story prompt with all five narrative components (protagonist, goal, obstacle, setting, twist) in a single call, especially when you want to control genre and tone via query parameters. Prefer this over the sibling RPG quest endpoint when you want a general story seed rather than a game-mechanics-oriented quest structure.

## Known failure modes

- Invalid or unsupported genre/tone values may return a generic default or error
- Payment failure (402) if the x402 micropayment is not processed correctly
- Network timeout on the Cloudflare Worker edge
- Empty or malformed query parameters may be ignored silently and defaults used

## How this service works

Generate a fictional structured story prompt with protagonist, goal, obstacle, setting and twist.

## Output

Returns a structured JSON object containing fictional narrative elements: a protagonist description, a central goal, a primary obstacle, a setting, and a surprising twist — forming a complete story seed ready for use in writing, games, or creative projects.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "seed": {
       "type": "string"
      },
      "tone": {
       "type": "string"
      },
      "genre": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-zoo-story-seed-generator-0fe842ad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-zoo.lolagent.workers.dev](https://www.zero.xyz/host/x402-zoo.lolagent.workers.dev/llms.txt)
