Kalshi Prediction Market Data
9 endpoints covering events, markets, price history, order books, and series โ structured access to Kalshi's regulated US prediction exchange with a single access token.
What is Kalshi?
Kalshi is the first CFTC-regulated prediction market exchange in the United States. Users trade Yes/No binary contracts on real-world events โ from Federal Reserve rate decisions and election outcomes to Bitcoin price levels and sports results. Every contract settles to $1 (Yes wins) or $0 (No wins), making Kalshi a unique real-money signal on what the market thinks will actually happen.
Anysite's Kalshi endpoints expose the exchange's full market data: tradeable contracts with live bid/ask prices, OHLC candlestick history, order-book depth, and the trade feed โ all without managing OAuth or Kalshi API credentials.
All Kalshi Endpoints
| Endpoint | What It Returns |
|---|---|
/api/kalshi/events | Prediction-market event by ticker โ title, category, lifecycle status, and optionally all nested tradeable contracts |
/api/kalshi/events/search | Search events by series ticker and status; returns matching event list with optional nested markets |
/api/kalshi/markets | Tradeable Yes/No contract by ticker โ live bid/ask prices, volume, open interest, liquidity, settlement rules |
/api/kalshi/markets/history | OHLC candlestick price history for a contract over a custom time window (1m, 1h, or 1d candles) |
/api/kalshi/markets/orderbook | Current Yes/No order-book snapshot โ bid and ask price levels with size |
/api/kalshi/markets/search | Search contracts by event, series, status, or close-time window |
/api/kalshi/markets/trades | Public trade feed โ price, size, taker side, block trade flag |
/api/kalshi/series | Series template by ticker โ category, frequency, fee structure, settlement sources |
/api/kalshi/series/search | List series templates within a category |
What You Can Build
Prediction Market Dashboards
Pull live market prices, order-book depth, and trade flow to build real-time dashboards showing where the market assigns probability on any event โ from election outcomes to economic indicators.
Quantitative Research Tools
Pull OHLC candlestick history across hundreds of markets to backtest prediction market strategies, analyse implied probabilities over time, and model crowd-wisdom signals for academic or investment research.
AI Agents and Forecasting Systems
Feed Kalshi market prices into LLM pipelines as calibration signals. Use current contract prices โ which represent real-money consensus โ to ground forecasting agents on what the market believes will happen.
News and Event Monitoring
Track the open-interest and price movement on specific event markets to surface breaking political, economic, or sports signals the moment they start moving โ before mainstream news catches up.
Quick Start
curl -X POST "https://api.anysite.io/api/kalshi/markets" -H "access-token: YOUR_TOKEN" -H "Content-Type: application/json" -d '{"ticker": "KXBTCD-26JUN1604-T74799.99"}'
curl -X POST "https://api.anysite.io/api/kalshi/markets/search" -H "access-token: YOUR_TOKEN" -H "Content-Type: application/json" -d '{"series_ticker": "KXBTCD", "status": "open", "count": 20}'
curl -X POST "https://api.anysite.io/api/kalshi/markets/history" -H "access-token: YOUR_TOKEN" -H "Content-Type: application/json" -d '{"series_ticker": "KXBTCD", "ticker": "KXBTCD-26JUN1604-T74799.99", "start_ts": 1718000000, "end_ts": 1718086400, "period_interval": 60}'
// In your MCP client, call the Anysite tool:
anysite_api({
endpoint: "/api/kalshi/markets/orderbook",
ticker: "KXELONMARS-99"
})
anysite api /api/kalshi/events/search series_ticker=KXELONMARS count=10
Plans
Every Kalshi endpoint is included in all Anysite plans โ there's no per-endpoint pricing to track. Start with MCP Unlimited at $30/mo for flat-rate access through your AI tools, or use a credit plan for REST & CLI at scale.
| Plan | Price | Best for |
|---|---|---|
| MCP Unlimited | $30/mo | Unlimited access via Claude, Cursor & ChatGPT (fair use) |
| Starter | $49/mo | REST & CLI โ includes a 7-day trial |
| Growth | $200/mo | Production workloads |
| Scale ยท Pro ยท Enterprise | from $300/mo | High volume & higher rate limits |
Frequently Asked Questions
access-token header โ your Anysite plan token is all you need. You don't create a Kalshi account or manage Kalshi credentials./api/kalshi/markets endpoint returns the current live bid/ask prices, volume, and open interest for any contract. The /api/kalshi/markets/history endpoint returns OHLC candlestick data for any time window you specify, at 1-minute, 1-hour, or 1-day granularity./api/kalshi/markets/search with a series_ticker or event_ticker to list available contracts. You can also use /api/kalshi/events/search with with_nested_markets: true to discover event tickers and their contracts in one call./api/kalshi/markets/orderbook returns the current Yes and No price levels with size at each level. Use the optional depth parameter to limit how many price levels are returned per side.Related Endpoints
Start accessing Kalshi data
One access token, 9 endpoints, all Kalshi market data โ no exchange accounts or API keys to manage.