# Bolt Trivia Questions API

> Bolt Trivia Questions API 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-14).

Fetches trivia questions by category type and quantity, returning question data for games, quizzes, or entertainment purposes.

## Facts

- Endpoint: POST https://datault.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-questions-api-03dd179c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FgZkRIIhzhMarSPNGuspA

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-questions-api-03dd179c -d '<json body>'
```

Example prompt: Give me 5 science trivia questions from the Bolt trivia API — type 'science', number 5.

## When to prefer this

Choose this endpoint when you need on-demand trivia questions for games, quiz apps, or entertainment content, especially when paying per-request via USDC x402 is acceptable and you want a simple type+number interface without API key management.

## Known failure modes

- Invalid or unsupported trivia type returns empty data or error
- Number parameter out of range returns error or partial results
- Payment failure via x402 results in 402 response blocking access
- Network timeout on orbonomy.xyz host
- Missing required fields returns a failed success:false response

## 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 trivia question(s) of the requested type and quantity, suitable for use in quizzes or games.

## 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-questions-api-03dd179c/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)
