Prediction Market Scraper - Kalshi + Polymarket avatar

Prediction Market Scraper - Kalshi + Polymarket

Pricing

from $0.30 / 1,000 market records

Go to Apify Store
Prediction Market Scraper - Kalshi + Polymarket

Prediction Market Scraper - Kalshi + Polymarket

Kalshi + Polymarket in one schema: live odds, prices, volume, open interest, full order-book depth, settled results for backtesting, and Kalshi candlestick history. Keyless public APIs, no browser. Targets the most actively traded markets by default, and never charges you for empty results.

Pricing

from $0.30 / 1,000 market records

Rating

0.0

(0)

Developer

oddsmith Data

oddsmith Data

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 hours ago

Last modified

Share

Prediction Market Scraper — Kalshi + Polymarket

Pull live and settled market data from Kalshi and Polymarket in one Actor: market listings, order-book depth snapshots, settled results for backtesting, and Kalshi candlestick history. Clean JSON or CSV output, no API keys required.

What you get

ModeReturns
MarketsOpen/closed markets with prices, bids/asks, status, close times
Order book snapshotsFull bid/ask depth, best prices, and Polymarket microstructure fields (tick size, min order size, last trade, book timestamp)
Settled marketsResolved markets with outcomes — ready for backtests
CandlesticksKalshi OHLC history per market at your chosen interval

Why this Actor

  • Two venues, one schema. Kalshi and Polymarket return very different payloads; this normalizes both into consistent records you can join on.
  • Order-book depth, not just prices. Most scrapers give you a last price. This captures the full book — the data you actually need for spread, liquidity, and microstructure analysis.
  • Active markets by default. Kalshi's raw listing is dominated by internal shard markets with no trading activity. When you don't name specific tickers, this Actor filters those out and targets the markets with the most volume and open interest, so you get data worth paying for.
  • You are never charged for nothing. Empty candle batches and empty order books are skipped, not billed.
  • No authentication. Uses public market-data endpoints only.
  • Polite by default. Built-in rate limiting with exponential backoff on 429 and 5xx.

Example input

{
"mode": "orderbook",
"venues": ["kalshi", "polymarket"],
"seriesTicker": "KXBTC",
"maxItems": 50,
"orderbookDepth": 10
}

Settled markets for a backtest:

{ "mode": "settled", "venues": ["kalshi"], "maxItems": 500 }

Kalshi candlesticks for specific markets:

{
"mode": "candlesticks",
"tickers": ["KXBTC-26JUN1314-T72299.99"],
"periodInterval": 60
}

Output

Each result is one dataset item. Export as JSON, CSV, or Excel from the run's dataset. Order-book items include normalized yes_levels/no_levels (Kalshi) or bids/asks (Polymarket), each a list of {price, size}.

Pricing

Pay-per-event: you are charged per item delivered (one event per market, snapshot, or candle batch). No subscription, no charge for empty runs.

Notes

  • Kalshi prices are in dollars (e.g. 0.76 = 76¢). Polymarket prices are 0–1 probabilities.
  • Kalshi market records include volume, volume_24h, open_interest, and liquidity alongside best bid/ask and last price.
  • Order books for illiquid markets may return empty depth — that is the true state of the book, not an error. Those results are skipped rather than charged.
  • closeWithinDays (default 30) bounds Kalshi discovery to markets resolving inside that window. Set it to 0 if you genuinely want the full unfiltered listing.
  • Built and maintained by an independent quant developer. Issues and requests welcome.