# Bolt Joke Generator

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

Fetches a random joke, optionally filtered by category and safe-for-work setting

## Facts

- Endpoint: POST https://boltx402.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-c1efdcdc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pW42ZlQuB6yb8BlmHQJ46

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-c1efdcdc -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.01 USDC) on-demand joke with optional category filtering and safe-mode control, especially within agent workflows already using the Bolt x402 toolkit.

## Known failure modes

- Invalid category string returns empty or error response
- Payment failure via x402 if USDC balance is insufficient
- Network timeout if boltx402.orbonomy.xyz is unreachable
- Malformed request body returns 400-level error

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing the joke content, fetched from the Bolt toolkit's joke endpoint.

## 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-c1efdcdc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
