LIVE DATA API

Real-Time
Polymarket Data.
For Algo Traders.

Access BTC prediction market orderbook data updated every second. Historical data, arbitrage detection, and WebSocket streams for serious traders.

Requests Today
2.4M
Avg Latency
12ms
Uptime Status
99.98%

Everything you need to trade smarter

Real-time and historical data from BTC prediction markets. Built for algorithmic traders and quants.

📊

Real-Time Orderbook

Bid, ask, spread, and volume data updated every second. Markets: 1H, 15M, 4H timeframes.

📈

Historical Data

Up to 1 year of tick-level data for backtesting. Export as JSON or CSV.

Arbitrage Alerts

Automatic detection when UP + DOWN < $1.00. Get notified of risk-free opportunities.

🔌

WebSocket Streams

Sub-second updates via WebSocket. No polling, no rate limits.

🛡️

99.98% Uptime

Enterprise-grade infrastructure. Redundant servers across multiple regions.

🔑

Simple API Keys

Generate keys instantly. No KYC, no waiting. Start in 30 seconds.

Dead simple integration

Get market data with a single API call. Works with any language. No SDK required.

Read Full Docs →
example.py
import requests

# Get current market data
response = requests.get(
    "https://api.predictapi.dev/markets",
    headers={"X-API-Key": "YOUR_API_KEY"}
)

data = response.json()

# Access BTC 1H market
m = data["markets"]["1h"]
print(f"UP: ${m['up']['bid']} | DOWN: ${m['down']['bid']}")

# Output: UP: $0.52 | DOWN: $0.47

API Endpoints

Four endpoints. That's all you need.

GET

/markets

Current bid, ask, spread, and volume for all BTC markets (1H, 15M, 4H)

GET

/history?hours=24

Historical tick data. Specify hours (max depends on plan)

GET

/arbitrage

List of detected arbitrage opportunities where UP + DOWN < $1.00

GET

/stats

Database stats: total records, oldest data, last update timestamp

Simple pricing

Start free. Upgrade when you need more.

Free
For testing and small projects
$0 /month
  • 100 requests/day
  • 24 hours of history
  • REST API only
  • Community support
Get Started
Enterprise
For funds and institutions
$99 /month
  • Unlimited requests
  • 1 year of history
  • Dedicated WebSocket
  • CSV/JSON exports
  • Priority support
Contact Sales

Frequently asked questions

What markets do you cover?
We cover all BTC UP/DOWN prediction markets on Polymarket: 1-hour, 15-minute, and 4-hour timeframes. Data includes bid, ask, spread, volume, and arbitrage opportunities.
How often is data updated?
REST API data is updated every second. WebSocket streams (Pro and Enterprise) provide sub-second updates as trades happen on the exchange.
Can I use this for backtesting?
Yes. The /history endpoint returns tick-level data perfect for backtesting. Free tier includes 24 hours, Pro includes 30 days, Enterprise includes 1 year.
Is there a rate limit?
Free: 100 req/day. Pro: 10,000 req/day. Enterprise: Unlimited. WebSocket connections don't count against rate limits.
Do you require KYC?
No. Sign up with just an email. Generate your API key instantly and start making requests in under 30 seconds.