# Bolt Trivia Generator

> Bolt Trivia 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 trivia questions of a specified type and quantity for use in games, quizzes, or entertainment

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/trivia
- 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-trivia-generator-4b369861
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5lTm5dd4W8GNDsutaYVOi

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-trivia-generator-4b369861 -d '<json body>'
```

Example prompt: Can you grab 5 science trivia questions for my quiz bot?

## When to prefer this

Use this endpoint when you need on-demand trivia questions for games, quizzes, chatbots, or entertainment apps and want to pay per request without a subscription. Especially suited for AI agents needing quick, categorized trivia with a simple REST interface.

## Known failure modes

- Invalid trivia type returns an error or empty data
- Number exceeds available questions causing partial or failed response
- Missing required fields causes validation error
- Payment failure (402) if USDC balance is insufficient
- Timeout if the upstream trivia source is unavailable

## 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 requested trivia questions of the specified type and quantity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string"
  },
  "number": {
   "type": "integer"
  }
 }
}
```

## 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-trivia-generator-4b369861/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)
