# Suverse Trivia Question Bank

> Suverse Trivia Question Bank is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-14).

Fetches a batch of trivia questions with category, difficulty, type, and question text from the Open Trivia Database via a keyless proxy.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-trivia-question-bank
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-trivia-question-bank-6afa57b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iw7i-OIxR65_KW5PO4GRx

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 suverse-trivia-question-bank-6afa57b3 -d '<json body>'
```

Example prompt: Pull me 5 trivia questions from category 9 (General Knowledge) with mixed difficulty so I can run a quick quiz round.

## When to prefer this

Choose this endpoint when you need keyless, pay-per-call access to structured trivia questions from the Open Trivia Database without managing API keys or rate limits yourself. It is ideal for agents building quiz features, games, or educational tools that need categorized, difficulty-filtered trivia on demand at high volume.

## Known failure modes

- Invalid or out-of-range category id returns an empty results array or error
- Requesting more questions than available in a category returns fewer results or an error
- Upstream Open Trivia Database rate limiting may cause intermittent failures
- Malformed POST body returns a 400 error

## How this service works

Pull a batch of trivia questions (with category, difficulty, type and the question text) from the Open Trivia Database. Keyless and high-volume. Pass a category id (e.g. 9 = General Knowledge); amount defaults to 5.

## Output

Returns an array of trivia question objects, each containing the question text, category name, difficulty level (easy/medium/hard), question type (multiple choice or true/false), the correct answer, and incorrect answer options.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-trivia-question-bank-6afa57b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
