# Bolt Trivia

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

Fetches trivia questions of a specified category/type and quantity

## Facts

- Endpoint: POST https://v0-bolt.orbonomy.xyz/api/trivia
- 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-trivia-e69b174f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_drIsoTghdlOB55YUUfsKL

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

Example prompt: Grab me 5 science trivia questions from Bolt's trivia endpoint so I can quiz my team.

## When to prefer this

Use this endpoint when an AI agent needs programmatic access to trivia questions on demand, especially in a pay-per-use x402 USDC context where no subscription is needed. Preferred when building quiz games, entertainment bots, or trivia-based interactions requiring typed/categorized questions.

## Known failure modes

- Invalid trivia type returns error or empty results
- Number exceeds maximum allowed questions per request
- Payment failure via x402 returns 402 status
- Malformed request body returns 400 validation error
- Service unavailable returns 5xx 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

Returns a JSON object with a success boolean and a data object containing the requested trivia questions, likely including question text, possible answers, and correct answer details.

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