# Bolt Trivia API

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

## Facts

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

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

Example prompt: Give me 5 science trivia questions using the Bolt trivia endpoint.

## When to prefer this

Use this endpoint when you need on-demand trivia questions fetched programmatically via a pay-per-request API, especially within the Bolt x402 ecosystem where USDC micropayments are already integrated. Good for agents building quiz features, entertainment bots, or interactive games.

## Known failure modes

- Invalid trivia type string returns error or empty data
- Number exceeds available trivia pool causing partial or failed response
- Missing required parameters causing validation error
- Payment failure via x402 protocol resulting in 402 response
- Service unavailable returning non-200 status

## 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 data object containing the requested trivia questions of the specified type, along with a success boolean indicating whether the request was fulfilled.

## 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-api-eeb20854/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)
