# Suverse Trivia Quiz Questions

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

Fetches a batch of random multiple-choice trivia questions with correct answer, distractors, category, and difficulty from the Open Trivia Database

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-trivia-quiz-questions
- Price: $0.05/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-quiz-questions-81a252f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i5AAI9JZz2yHRntnQ0UKy

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-quiz-questions-81a252f0 -d '<json body>'
```

Example prompt: Grab me 10 random multiple-choice trivia questions at medium difficulty from the Open Trivia Database — I need the correct answer and the wrong choices included for each one.

## When to prefer this

Choose this endpoint when you need structured, ready-to-use multiple-choice trivia questions with correct answers and distractors already bundled together, sourced from the well-known Open Trivia Database. It is ideal for quiz apps, trivia bots, game show simulations, or educational tools that need randomized questions without maintaining their own question bank. Prefer this over raw OpenTDB if you need a single monetized, proxied API call in an x402-compatible agentic workflow.

## Known failure modes

- Invalid or missing amount parameter returns an error or empty result set
- Unsupported difficulty or type enum value may return an error or default to random
- Payment failure (x402) blocks the request before it reaches the trivia source
- Open Trivia Database upstream unavailability causes proxy timeout or 502 error
- Requesting more questions than available for a specific category/difficulty combination may return fewer than requested

## How this service works

Fetch a batch of random trivia questions (multiple choice) with the correct answer, distractors, category, and difficulty. Source: Open Trivia Database. Pass amount and optional type/difficulty query params.

## Output

Returns a batch of multiple-choice trivia questions, each containing the question text, the correct answer, an array of distractor (incorrect) answers, the category (e.g. Science, History, Sports), and the difficulty level (easy, medium, hard). The response is sourced from the Open Trivia Database.

## 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-quiz-questions-81a252f0/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)
