See What's Possible with
Multi-Category Orderbook Data

High-frequency capture of prediction market microstructure across crypto, sports, economics, and weather. Full bid/ask depth, millisecond timestamps, and cross-category coverage — data that doesn't exist anywhere else.

Live Markets
Snapshots
4Categories
30Cities
Use Cases

What you can build

Market Making Simulation

Backtest market-making strategies across crypto, sports, and weather prediction markets with 20Hz orderbook data

Learn more

Sports Odds Analytics

Track NBA, NFL, and EPL game outcome probabilities in real-time. Analyze how odds shift as events approach

Learn more

Weather Derivatives

Monitor daily temperature prediction markets across 30 cities. Build weather-based trading models with historical orderbook depth

Learn more

Economic Indicator Forecasting

Track FOMC decision probabilities and nonfarm payroll predictions. Capture market sentiment before data releases

Learn more

AI Agent Research

Feed live prediction market data to AI agents via MCP. Enable autonomous research across crypto, sports, and macro markets

Learn more

Cross-Category Arbitrage

Detect mispricing across 114+ markets spanning 4 categories. Analyze spread patterns and liquidity dynamics

Learn more
Data Quality

Why Data Fidelity Matters

50ms
Crypto Capture
20 Hz event-driven
500ms
Sports Capture
2 Hz polling
2s
Economics Capture
Indicator markets
2-5s
Weather Capture
30 cities tracked
<100ms
End-to-End Latency
Event to persistence

Event-Driven Capture vs Polling

Traditional data providers poll APIs at fixed intervals (1s, 5s, 30s), missing critical microstructure events between samples. Our pipeline uses aggressive 50ms polling combined with WebSocket event streams for crypto markets (20 Hz), with optimized 2 Hz capture for sports and 1 Hz for economic indicators. The result: category-appropriate capture rates with sub-100ms end-to-end latency from exchange event to ClickHouse persistence.

MCP Integration

AI Agents Meet Orderbook Data

Claude + Orderbook MCP
You
What are the current NBA championship odds and NYC weather market?
Claude
Tool Call
{
  "tool": "list_markets",
  "params": {
    "category": ["sports", "weather"],
    "filter": "NBA championship, NYC temperature"
  }
}
I found 6 active NBA championship markets and 1 NYC daily temperature market. NBA Championship: The current frontrunner shows bid 0.32 / ask 0.34 with deep liquidity (18,500 contracts on the bid side). Three other teams are trading between 0.08-0.15. NYC Weather: The "above 72F" outcome for today is at mid price 0.61, with a tight spread of 0.02. Weather markets typically see increased volume closer to settlement time (6 PM ET).
claude_desktop_config.json
{
  "mcpServers": {
    "polymarket-orderbook": {
      "command": "node",
      "args": ["mcp-server/index.js"],
      "env": {
        "API_KEY": "rm_your_key",
        "API_URL": "https://api.resolvedmarkets.com"
      }
    }
  }
}
Quick Start

Three steps to live data

1

Get Your API Key

Sign up and generate an API key from the dashboard. Free tier available.

Navigate to /api-keys and click "Generate Key"
2

Make Your First Request

Query live markets with a single HTTP request.

curl -H "X-API-Key: rm_your_key" \
  https://api.resolvedmarkets.com/v1/markets/live
3

Stream Live Data

Connect via WebSocket for real-time orderbook updates.

const ws = new WebSocket(
  "wss://api.resolvedmarkets.com/ws/orderbook"
);
ws.onmessage = (e) => {
  const book = JSON.parse(e.data);
  console.log(book.best_bid, book.best_ask);
};

Ready to Get Started?

Access prediction market orderbook data across every category at a resolution nobody else offers.