RAPIDAPI

Meridian Edge on RapidAPI

Access real-time prediction market consensus data through RapidAPI. 25+ regulated sources aggregated into volume-weighted probabilities. Updated every 10 minutes.

Why RapidAPI?

If you already use RapidAPI for other services, adding Meridian Edge takes seconds. Authentication, billing, and rate limiting are handled by RapidAPI's infrastructure. You get the same consensus data, the same endpoints, and the same update frequency as the direct API — just routed through RapidAPI's gateway.

Available Endpoints

Code Examples

Python

python
import requests

url = "https://meridian-edge-prediction-market-consensus.p.rapidapi.com/v1/consensus"

headers = {
    "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "meridian-edge-prediction-market-consensus.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params={"sport": "NBA", "limit": 10})
data = response.json()

for event in data["events"]:
    print(f"{event['title']:<50} {event['consensus_prob']:.0%}")

JavaScript (Node.js)

javascript
const axios = require('axios');

const options = {
  method: 'GET',
  url: 'https://meridian-edge-prediction-market-consensus.p.rapidapi.com/v1/consensus',
  params: { sport: 'NBA', limit: 10 },
  headers: {
    'X-RapidAPI-Key': 'YOUR_RAPIDAPI_KEY',
    'X-RapidAPI-Host': 'meridian-edge-prediction-market-consensus.p.rapidapi.com'
  }
};

const { data } = await axios.request(options);
data.events.forEach(e => console.log(e.title, e.consensus_prob));

cURL

bash
curl -s "https://meridian-edge-prediction-market-consensus.p.rapidapi.com/v1/consensus?sport=NBA&limit=5" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: meridian-edge-prediction-market-consensus.p.rapidapi.com" | python3 -m json.tool

Response Example

JSON response
{
  "events": [
    {
      "event_id": "nba-lal-vs-bos-2026-03-28",
      "title": "Lakers vs Celtics — Mar 28",
      "sport": "NBA",
      "consensus_prob": 0.58,
      "divergence_score": 0.03,
      "source_count": 4,
      "last_updated": "2026-03-28T14:30:00Z"
    }
  ],
  "meta": {
    "total": 42,
    "returned": 1,
    "timestamp": "2026-03-28T14:30:12Z"
  }
}

Frequently Asked Questions

How do I access Meridian Edge through RapidAPI?
Subscribe to the Meridian Edge API on RapidAPI, then use your RapidAPI key in the X-RapidAPI-Key header. All endpoints return the same consensus data as the direct API.
What data does the Meridian Edge RapidAPI return?
The API returns aggregated consensus probabilities from 25+ regulated prediction markets, covering sports (NBA, NHL, MLB, MLS, NFL), politics, economics, and other events. Data includes consensus probability, divergence scores, and event metadata.
What is the difference between RapidAPI and direct API access?
Both return identical data. RapidAPI handles authentication and billing through their platform, which is convenient if you already use RapidAPI for other services. Direct API access is available at meridianedge.io with the same endpoints and data.

Subscribe on RapidAPI

Same consensus data. Same endpoints. Managed through RapidAPI.

Subscribe on RapidAPI →

Or subscribe directly: View Plans

For informational purposes only. Not investment advice. Participation in prediction markets involves risk of loss.