Live Data Indexing

Polymarket Data Built for Quantitative Workflows

Use one consistent dataset for discovery, market history, and execution analysis. The platform is built for teams that need trustworthy Polymarket data without ad-hoc scraping or fragile joins.

Live Dataset Surface

polymarket data

live

Rows

10B+

Historical archive

Markets

450K+

Open + resolved

Resolution

1m

Minute snapshots

Endpoint stream

/markets/{slug}/prices

42 ms

/markets/{slug}/metrics

50 ms

/markets/{slug}/books

61 ms

Dataset

What Is Included

  • Market discovery data for series, events, and individual markets.
  • Historical prices for modeling and feature engineering.
  • Historical metrics for liquidity and spread-aware filtering.
  • Historical order book snapshots to simulate realistic fills.

Code

API Example

example.pyREST API
import requestsbase = "https://api.polymarketdata.co/v1"headers = {"X-API-Key": "YOUR_API_KEY"}markets = requests.get(    f"{base}/markets",    headers=headers,    params={"search": "election", "limit": 100},    timeout=30,)markets.raise_for_status()rows = markets.json().get("data", [])python

Applications

Use Cases

  • Centralize Polymarket research data for strategy and analytics teams.
  • Power BI notebooks and pipeline jobs with stable endpoint contracts.
  • Measure execution risk with depth-aware market state history.

Questions

FAQ

How is this different from scraping Polymarket myself?+

The Polymarket public API has no historical data — it returns current live state only. Scraping it yourself means you'd have to have been running a scraper since the market opened to have any history. We've already done that continuously across 450k+ markets since August 2025.

How do I find markets to query? I don't have the slugs memorized.+

Start with the /markets discovery endpoint. Search by keyword, filter by category or date range, and it returns slugs, IDs, and metadata. It's designed to be your first call before any historical pull.

Can I use this to power a live dashboard or does it only work for research?+

Both work. Research workflows use historical windows; dashboard pipelines can poll the latest data on a schedule. The same endpoints and auth work for either use case.

Does the free plan have enough to evaluate whether this is worth paying for?+

Yes. The free tier gives you real access to real historical data. Pull a market you care about, run some analysis, and see if the data quality and coverage meets your needs before upgrading.

Get Access

Start Working With polymarket data

Use a production-grade dataset for research, strategy validation, and analytics without rebuilding the ingestion layer from scratch.