# fastapi.online Fantasy Character Generator

> fastapi.online Fantasy Character Generator is a paid API for AI agents from api.fastapi.online, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Generates a detailed fantasy character profile from a description and optional seed value

## Facts

- Endpoint: POST https://api.fastapi.online/generate-fantasy-character
- 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/fastapi-online-fantasy-character-generator-b1f33d83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MzLEFx6lmvmQt9YmZ6Se0

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 fastapi-online-fantasy-character-generator-b1f33d83 -d '<json body>'
```

Example prompt: Can you generate a fantasy character for me — a cunning elven rogue with a tragic backstory? Use seed 42 so I can reproduce the same character later.

## When to prefer this

Choose this endpoint when you need a quick, on-demand fantasy character generated from a natural language description without requiring a complex LLM orchestration setup. It is particularly useful when reproducibility matters (via seed) and when you want a pay-per-call model with no signup. Prefer this over general-purpose LLMs when you want a structured, purpose-built fantasy character output at a predictable low cost per call.

## Known failure modes

- Description too long (exceeds 300 characters) — validation error
- Empty or missing description — validation error
- Invalid seed type (non-integer) — schema validation error
- Service unavailable or model overloaded — 5xx error
- Payment not completed — 402 Payment Required

## How this service works

Chat, embeddings, OCR, speech-to-text, image editing, image understanding (captioning/Q&amp;A), text-to-speech, translation, writing tools, classification tools, developer tools, local utilities, format/checksum validators, encoding &amp; crypto utilities, date/time calculators, geo/coordinate math, math &amp; finance calculators, novelty tools, and business/social writing generators — 179 endpoints in all, across multiple specialized self-hosted models. Pay per call with crypto — no signup — or get an API key.

## Output

A generated fantasy character profile based on the provided description, potentially including name, race, class, personality traits, backstory, and other character attributes relevant to fantasy settings. The seed parameter ensures reproducibility of the same character across calls.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "seed": {
   "type": "integer"
  },
  "description": {
   "type": "string",
   "maxLength": 300,
   "minLength": 1,
   "description": "the character"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fastapi-online-fantasy-character-generator-b1f33d83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.fastapi.online](https://www.zero.xyz/host/api.fastapi.online/llms.txt)
