Prediction market data,
unified and searchable
1.8M+ markets from Polymarket in one consistent schema. Query by platform, category, status, or date — via REST API or direct SQL.
Get Started1.8M+
Markets indexed
1
Platform live
2020
Data since
<1min
Refresh interval
One schema for all platforms
Polymarket uses condition IDs and token pairs on Polygon. We receive updates via WebSocket and normalize them into one clean, consistent data model in near real-time — the same schema every venue we add slots into.
- REST API with filtering by platform, category, status, and date range
- Direct SQL queries via ClickHouse on the markets table
- Monthly Parquet file exports for bulk analysis
| Field | Type | Description |
|---|---|---|
| id | String | Unique market identifier |
| platform | String | Source platform (polymarket) |
| title | String | Market question or title |
| description | String | Full market description |
| outcomes | Array | Possible outcomes (e.g. Yes, No) |
| category | String | Market category |
| status | String | Market status (active, resolved, closed) |
| open_date | DateTime | When the market opened |
| close_date | DateTime | When the market closes |
| resolution_date | DateTime | When the market resolved |
Query markets via API
Fetch markets with powerful filtering. Paginated responses, consistent format across all platforms.
{
"data": [
{
"id": "poly_0x1234...",
"platform": "polymarket",
"title": "BTC above $100k?",
"status": "active",
"outcomes": ["Yes", "No"],
"category": "crypto",
"close_date": "2026-12-31T00:00:00Z"
}
],
"meta": { "total": 41200000, "page": 1 }
}Query markets with SQL
Connect to ClickHouse and run analytical queries directly on the markets table. Count markets by category, track resolutions, or export results.
-- Market counts by platform and status SELECT platform, status, count() as market_count FROM markets FINAL GROUP BY platform, status ORDER BY market_count DESC
Coverage
Platform breakdown
Markets from every major prediction market platform, normalized to one schema.
| Platform | Markets | Since | Type | Status |
|---|---|---|---|---|
| Polymarket | 1.8M+ | 2020 | Blockchain (Polygon) | Live |
| Kalshi | — | — | US-regulated (CFTC) | Soon |
| PredictIt | — | — | US-based | Soon |
| Metaculus | — | — | Forecasting | Soon |
Use Cases
What you can do with market data
Market Discovery
Search and filter across 1.8M+ Polymarket markets. Find markets by category, status, or keyword.
Market Analytics
Analyze market creation patterns, category distributions, and resolution rates.
Cross-Platform Comparison
One unified schema, ready to compare the same events across venues as we add them.
Automated Monitoring
Track new market creation, status changes, and resolutions programmatically via the API.
Ready to query prediction market data?
Access 1.8M+ markets from Polymarket through one unified API.
Sign up nowAlso explore: Trade data·Orderbook data