Data
Polymarket esports data
Polymarket prices professional esports matches the way it prices everything else: a live order book per outcome. Marketlens records those books through every match, 1,022 markets across League of Legends, Dota 2, Counter Strike, Valorant, $22.0M of traded volume since August 15, 2026. This page is about the esports dataset; endpoint reference is in the docs and per title coverage numbers are in the esports catalog.
What the esports dataset holds
Match winner markets for every League of Legends, Dota 2, Counter-Strike, and Valorant fixture Polymarket lists, plus map and game winner markets on the bigger series. Each market carries full L2 order book snapshots with millisecond price changes between them, executed trades, and, once the match settles, its stored winning outcome. Odds reprice through drafts, picks, and every fight, so the book is a tick level record of how the crowd digested the match.
Tournament schedules make esports unusually good backtest material: a steady stream of structurally similar matches, each one a fresh market with an objective resolution a few hours later.
Title coverage
Every title links to a live coverage page with market counts, resolution splits, and date ranges:
Traditional leagues are collected the same way and live on sports odds history.
Query a title in Python
from marketlens import MarketLens
client = MarketLens()
# resolved League of Legends markets with their winners
for market in client.markets.list(
series_id="league-of-legends", status="resolved", take=10,
):
print(market.question, market.winning_outcome)
# replay one match's book through the series
for market, book in client.orderbook.walk(
market_id,
after="2026-08-15T14:00:00Z",
before="2026-08-15T17:00:00Z",
):
print(book.as_of, book.bids[0], book.asks[0])FAQ
Common questions
Where can I get Polymarket esports odds history?
Marketlens records the order books of every Polymarket esports match market through the whole series: 1,022 markets across League of Legends, Dota 2, Counter Strike, Valorant with $22.0M of traded volume. It is served through a REST API, a Python SDK (pip install marketlens), and bulk Parquet exports, with a free tier of 5M rows per day.
Which esports titles have Polymarket odds history?
League of Legends, Dota 2, Counter-Strike, and Valorant, every match market Polymarket lists for them. Match winner markets cover every fixture; bigger series add map and game winner markets. Collection began August 15, 2026 and runs continuously as tournaments play out.
Does Polymarket show historical esports odds?
Polymarket's own pages show live odds; once a match ends, the price path is gone from the UI. Marketlens keeps the historical record: full L2 order books at millisecond resolution, trades, and the resolved winner for every captured match market.
Can I backtest esports betting strategies on Polymarket data?
Yes. The Marketlens Python SDK replays the recorded match books tick by tick with queue priority, latency, slippage, and Polymarket fees, and settles positions by the stored winning outcome. See marketlens.trade/docs/backtesting.
Try it
Pull esports books in one call
The free tier includes 5M rows per day with full API and full archive access, no card required.
$ pip install marketlens