Back to home
Market Data

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 Started

1.8M+

Markets indexed

1

Platform live

2020

Data since

<1min

Refresh interval

Unified Schema

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
Market SchemaSample fields
FieldTypeDescription
idStringUnique market identifier
platformStringSource platform (polymarket)
titleStringMarket question or title
descriptionStringFull market description
outcomesArrayPossible outcomes (e.g. Yes, No)
categoryStringMarket category
statusStringMarket status (active, resolved, closed)
open_dateDateTimeWhen the market opened
close_dateDateTimeWhen the market closes
resolution_dateDateTimeWhen the market resolved
REST API

Query markets via API

Fetch markets with powerful filtering. Paginated responses, consistent format across all platforms.

GET/api/v1/markets
200 OK
{
  "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 }
}
SQL Access

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.

SQL Console
ClickHouse
-- 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
6 rows · 1.2s Run Query

Coverage

Platform breakdown

Markets from every major prediction market platform, normalized to one schema.

PlatformMarketsSinceTypeStatus
Polymarket1.8M+2020Blockchain (Polygon) Live
KalshiUS-regulated (CFTC)Soon
PredictItUS-basedSoon
MetaculusForecastingSoon

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.

Market Data

Ready to query prediction market data?

Access 1.8M+ markets from Polymarket through one unified API.

Sign up now

Also explore: Trade data·Orderbook data