# x402-zoo Random Trivia Fact

> x402-zoo Random Trivia Fact is a paid API for AI agents from x402-zoo.lolagent.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a short curated trivia fact with a descriptive source label from a static set, optionally seeded for reproducibility.

## Facts

- Endpoint: GET https://x402-zoo.lolagent.workers.dev/api/random-fact
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-zoo-random-trivia-fact-491ec0fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bqqhH_Q-g0IWMkyI8r3zF

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 x402-zoo-random-trivia-fact-491ec0fb
```

Example prompt: Give me a random trivia fact from the curated zoo set — something short and interesting with a source label.

## When to prefer this

Choose this endpoint when you need a quick, attributed trivia fact without generating or hallucinating content — ideal when source credibility labeling matters or when you want a deterministic result via a seed parameter. Prefer over LLM-generated facts when you need facts explicitly labeled as curated rather than synthetic.

## Known failure modes

- Invalid seed format may return a default or unexpected fact
- Static trivia set is small so repeated calls may cycle through same facts quickly
- Service unavailability returns a non-200 HTTP status with no fact body
- Payment failure (402) if x402 micropayment is not completed

## How this service works

Return a short fact from a small curated static trivia set with a descriptive source label.

## Output

A short plain-text trivia fact drawn from a small static curated set, accompanied by a descriptive label identifying the source or category of the fact.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "seed": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-zoo-random-trivia-fact-491ec0fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-zoo.lolagent.workers.dev](https://www.zero.xyz/host/x402-zoo.lolagent.workers.dev/llms.txt)
