# Bolt Joke Generator

> Bolt Joke Generator is a paid API for AI agents from bolt.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a random joke, optionally filtered by category and safety level

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/joke
- 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/bolt-joke-generator-f8c333f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W_WHdR2M9eHzfH3fqBFjO

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 bolt-joke-generator-f8c333f5 -d '<json body>'
```

Example prompt: Tell me a safe, work-appropriate joke from the programming category using Bolt's joke endpoint.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use joke with optional content safety filtering and category selection, especially in agent workflows that require lightweight entertainment content without managing a joke database yourself.

## Known failure modes

- Invalid category string returns an error or empty result
- Network timeout if the Bolt service is unavailable
- 402 payment required if USDC payment via x402 is not properly attached
- Unexpected data shape if joke database lacks entries for the requested category

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the joke content, potentially including setup/punchline or a single joke string depending on the category requested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "safe": {
   "type": "boolean"
  },
  "category": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-joke-generator-f8c333f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
