A prediction market API provides programmatic access to real-time event probability data aggregated from multiple prediction markets — letting developers build tools that reason about future outcomes.
A prediction market is a platform where participants buy and sell contracts on the outcome of future events. The price of a contract reflects the crowd's collective probability estimate for that outcome — for example, a 63-cent contract represents a 63% implied probability.
A prediction market API sits between those markets and your code. Instead of scraping prices from individual platforms, you call one endpoint and receive a structured probability estimate, often aggregated across multiple markets for higher reliability.
Most prediction market APIs return some combination of the following fields per event:
The Meridian Edge API also returns a divergence_pct field that flags when markets disagree by more than 3%. This is useful for identifying potential mispricings or breaking-news situations before consensus catches up.
Researchers use prediction market data as an alternative to polling or expert forecasting. The data is updated continuously and reflects new information faster than surveys.
Developers build tools that monitor divergence between markets and alert when cross-market spreads exceed a threshold. The API makes polling many events at scale practical.
Publishers embed real-time probability widgets or build "likelihood meters" for ongoing events — election coverage, championship consensus, or economic indicator forecasts.
Language model applications use prediction market consensus to ground claims about future outcomes with calibrated probabilities rather than stale training data.
The Meridian Edge API uses API key authentication via the X-API-Key header:
curl -H "X-API-Key: me_free_your_key" \ "https://meridianedge.io/api/v1/consensus?sport=NBA&limit=5"
Starter keys allow 1,000 calls per day ($29/mo). Pro keys allow 10,000 calls per day ($99/mo).