# Bolt Trivia API

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

Returns trivia questions or facts of a specified type and quantity, paid per request via USDC

## Facts

- Endpoint: POST https://deltadata.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-8474249d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W1qj-9oqsIWqllS_8NWVz

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

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

## When to prefer this

Use this endpoint when an AI agent needs on-demand trivia questions or facts for a specific category, especially in entertainment, quiz, or game contexts, and is operating in a pay-per-request USDC micropayment flow via x402.

## Known failure modes

- Invalid trivia type string returns error or empty data
- Number exceeds available trivia pool causing partial or empty response
- Payment failure via x402 returns 402 status blocking the request
- Missing required fields returns validation error
- Network timeout on slow upstream data source

## 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 or facts matching the specified type and count.

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