BrockMisner/polymarket-crypto-5m-15m
Polymarket Crypto 5-Minute & 15-Minute Market Data High-frequency data from Polymarket's crypto up/down prediction markets. Covers BTC, ETH, SOL, XRP across 5-minute and 15-minute windows. Updated daily. All timestamps are UTC. Last updated: 2026-03-13 01:55 UTC Data Summary Dataset Rows First Date Last Date orderbooks 3,415,267 2026-01-09 2026-03-13 trades 23,241,033 2026-01-27 2026-03-13 price_history 304,340 2026-03-06 2026-03-13 crypto_prices… See the full description on the dataset page: https://huggingface.co/datasets/BrockMisner/polymarket-crypto-5m-15m.
Polymarket Crypto 5-Minute & 15-Minute Market Data
High-frequency data from Polymarket's crypto up/down prediction markets. Covers BTC, ETH, SOL, XRP across 5-minute and 15-minute windows.
Updated daily. All timestamps are UTC.
Last updated: 2026-03-13 01:55 UTC
Data Summary
Subsets
orderbooks
10-level order book snapshots captured every 10 seconds.
trades
Individual trade executions from the Polymarket Data API.
resolutions
Final outcomes for resolved markets.
markets
Market metadata and configuration.
price_history
1-minute price points from CLOB API for Polymarket market tokens.
crypto_prices
1-minute OHLCV candles for underlying crypto assets from Binance.
Usage
from datasets import load_dataset
# Load trades
trades = load_dataset("obadiaha/polymarket-crypto-5m-15m", data_dir="trades")
# Load order books
books = load_dataset("obadiaha/polymarket-crypto-5m-15m", data_dir="orderbooks")
# Load resolutions
resolutions = load_dataset("obadiaha/polymarket-crypto-5m-15m", data_dir="resolutions")
# Load crypto spot prices (1-minute candles)
crypto = load_dataset("obadiaha/polymarket-crypto-5m-15m", data_dir="crypto_prices")Collection Method
Data is collected by an automated bot running 5 concurrent loops:
- Order books: CLOB API
/bookevery 10s - Trades: Data API
/tradesevery 30s - Resolutions: Gamma API
/markets?closed=trueevery 60s - Market discovery: Gamma API
/events/slug/{slug}every 2 min - Price history: CLOB
/bookevery 60s for active market tokens - Crypto prices: Binance
/api/v3/klinesevery 60s (BTC, ETH, SOL, XRP 1m candles)
License
MIT
