# Bolt Joke Generator

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

Returns a joke (optionally filtered by category and safe-for-work setting) for AI agents, billed per request in USDC.

## Facts

- Endpoint: POST https://datault.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-4986d4a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_le8jyUWKjxl0on8MdBmIb

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

Example prompt: Tell me a safe-for-work joke from the programming category — something clean I can share in a work Slack channel.

## When to prefer this

Use this endpoint when an AI agent needs a quick, on-demand joke — especially when filtering by category (e.g. programming, science) or safety level (safe vs. adult) is important. Prefer over static joke databases when pay-per-use billing via USDC/x402 is acceptable and freshness or variety is needed.

## Known failure modes

- Invalid category string returns empty or error result
- Malformed request body causes 4xx response
- Payment failure (insufficient USDC) blocks request with 402
- Category not found may return generic fallback or error
- Service downtime on orbonomy.xyz yields 5xx

## 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, optionally filtered by category and safe-for-work flag.

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