# Klymax402 Prediction Markets Odds API

> Klymax402 Prediction Markets Odds 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).

Fetches current odds, probabilities, and market data from prediction markets like Polymarket and Kalshi by market ID or search query.

## Facts

- Endpoint: GET https://klymax402.com/api/prediction-markets/api/odds
- 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-prediction-markets-odds-api-671c5efe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yEjzy-Bse5ZFbJB0UbWli

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-prediction-markets-odds-api-671c5efe
```

Example prompt: What are the current odds on Polymarket for Bitcoin reaching $100k? Search for the 'bitcoin 100k' market and give me the probability and 24h volume.

## When to prefer this

Use this endpoint when you need real-time prediction market probabilities from Polymarket or Kalshi without managing separate API keys for each platform. It is ideal for agents that need to quickly look up market odds by either a natural language search query or a known market ID, and want a unified response format covering both platforms.

## Known failure modes

- Market not found for given query or ID — returns empty or null result
- Ambiguous search query matches multiple or no markets
- Stale data if underlying Polymarket/Kalshi API is slow or unavailable
- Payment failure via x402 if USDC balance is insufficient
- Invalid marketId format returns an error response

## 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

Returns a JSON object with the market ID, source platform (Polymarket or Kalshi), the market question text, a timestamp, 24-hour trading volume, the current probability of the outcome, and a breakdown of outcome prices.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Search query to find a market by question text (e.g. 'bitcoin 100k', 'trump election'). Used when marketId is not known."
  },
  "marketId": {
   "type": "string",
   "description": "Polymarket condition ID or Kalshi ticker. Use this if you already know the market ID."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "example",
  "source": "example",
  "question": "example",
  "timestamp": "example",
  "volume24h": 1,
  "probability": 1,
  "outcomePrices": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-prediction-markets-odds-api-671c5efe/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)
