# AllInOneCents Trivia API

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

Returns trivia questions, answers, or facts based on a natural language query for $0.01 per call

## Facts

- Endpoint: POST https://allin-onecents.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/allinonecents-trivia-api-598167a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eUsbXwifUU3_VCZyjVhik

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 allinonecents-trivia-api-598167a4 -d '<json body>'
```

Example prompt: Give me a trivia question and answer about World War II — something interesting I can use for a pub quiz tonight.

## When to prefer this

Choose this endpoint when you need cheap ($0.01), on-demand trivia questions or factual lookups via a simple query string, especially when integrating into a quiz app, chatbot, or entertainment workflow that doesn't require a dedicated trivia-specific provider.

## Known failure modes

- Missing required 'query' field returns validation error
- Vague or empty query may return irrelevant or generic trivia
- Service downtime on orbonomy.xyz domain results in connection failure
- Payment failure over x402 protocol blocks the request
- Malformed JSON body returns 400-level error

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

A JSON object with a success boolean and a data object containing the trivia question, answer, or fact relevant to the submitted query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Input query"
  }
 }
}
```

## 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/allinonecents-trivia-api-598167a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allin-onecents.orbonomy.xyz](https://www.zero.xyz/host/allin-onecents.orbonomy.xyz/llms.txt)
