# Bolt Joke Generator

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

Returns a random joke, optionally filtered by category and safe-for-work status

## Facts

- Endpoint: POST https://deltadata.orbonomy.xyz/api/joke
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-joke-generator-01000896
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pfEW9HhBVheMO7AGqB0sg

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

Example prompt: Tell me a safe, work-appropriate joke from the programming category.

## When to prefer this

Choose this endpoint when you need a quick, on-demand joke with optional content filtering (safe mode) and category selection, and you are already integrated with the x402 micropayment protocol for per-request billing at $0.01 USDC.

## Known failure modes

- Invalid category string returns empty or error response
- Missing or malformed request body may return 400 error
- Payment not completed via x402 results in 402 Payment Required
- Unavailable category may return no results or fallback joke
- Network timeout if backend is overloaded

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