# Agentutility Bestiary Random Creature Generator

> Agentutility Bestiary Random Creature Generator is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a randomly selected creature with an encyclopedia entry and fun fact, optionally filtered by category such as mythology, cryptid, folklore, or sci-fi.

## Facts

- Endpoint: POST https://x402.agentutility.ai/bestiary-random
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentutility-bestiary-random-creature-generator-89d8c6bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FyCk960Uz4_dWCWba6eE9

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 agentutility-bestiary-random-creature-generator-89d8c6bb -d '<json body>'
```

Example prompt: Give me a random creature from the cryptid category — I want its encyclopedia entry and a fun fact for today's content post.

## When to prefer this

Choose this endpoint when you need a quick, varied, single-call creature reference without maintaining your own database of mythological or fictional creatures. Ideal for content feeds, daily creature features, RPG inspiration, or creative writing prompts where non-deterministic variety is desirable. Prefer over static datasets when freshness and surprise are valued.

## Known failure modes

- Invalid category value returns an error or falls back to a random category
- Payment failure via x402 protocol results in 402 response and no creature data
- Service unavailability returns a 5xx error with no creature content
- Empty or malformed POST body may return a 400 error

## How this service works

Returns a random creature with a short encyclopedia entry and a fun fact. Optionally pick from a category (mythology, folklore, cryptid, literature, film, game, religion, sci-fi). Each call varies. For prompts, content feeds, and inspiration. Use it as a random creature API, monster of the day, or random mythical creature generator.

## Output

A JSON object containing the creature's name, a short encyclopedia-style description, a fun fact, and its category. Each call returns a different creature, making results non-deterministic.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {
      "category": {
       "type": "string",
       "description": "Optional: mythology, folklore, cryptid, literature, film, game, religion, sci-fi, or any (default)."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "category": {
       "type": "string"
      },
      "creature": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "origin": {
         "type": "string"
        },
        "category": {
         "type": "string"
        },
        "fun_fact": {
         "type": "string"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "category": "cryptid",
  "creature": {
   "name": "Mothman",
   "origin": "West Virginia folklore",
   "category": "cryptid",
   "fun_fact": "First reported near Point Pleasant in 1966."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-bestiary-random-creature-generator-89d8c6bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
