# klymax402 Event Resolver API

> klymax402 Event Resolver API is a paid API for AI agents from klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Resolves real-world event questions (binary, numeric, or categorical) using web evidence and returns a confidence-scored answer with supporting sources

## Facts

- Endpoint: GET https://klymax402.com/api/event-resolver/api/resolve
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-event-resolver-api-83caff43
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eWA6Ieyo8daNqzErgOsF7

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 klymax402-event-resolver-api-83caff43
```

Example prompt: Did Bitcoin reach $100K by April 2026? Resolve this as a binary yes/no question and tell me how confident you are, along with the sources you used.

## When to prefer this

Use this endpoint when you need to resolve a specific real-world event question with evidence and a confidence score, especially for prediction market settlement, fact-checking, or verifying whether a milestone was reached. Prefer this over general web search when you need a structured, scored resolution with cited sources rather than raw search results.

## Known failure modes

- Question is ambiguous or too vague to resolve — low confidence score returned
- Event has not yet occurred — resolution may return null or inconclusive
- No reliable web sources found — empty sources and evidence arrays
- Malformed or missing question parameter — API returns an error
- Numeric resolution type used for a binary question — may return unexpected format

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

A JSON object containing the resolved answer (resolution), a confidence score between 0 and 1, the original question, a timestamp, a list of evidence snippets, and the source URLs consulted to reach the resolution.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "enum": [
    "binary",
    "numeric",
    "categorical"
   ],
   "type": "string",
   "description": "Type of resolution expected. binary = Yes/No, numeric = a number, categorical = one of several options. Default: binary."
  },
  "question": {
   "type": "string",
   "description": "The event question to resolve, e.g. 'Did BTC reach $100K by April 2026?' or 'Did the Lakers win the NBA Finals 2026?'"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "sources": [],
  "evidence": [],
  "question": "example",
  "timestamp": "example",
  "confidence": 1,
  "resolution": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-event-resolver-api-83caff43/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
