Access real-time prediction market consensus data through RapidAPI. 25+ regulated sources aggregated into volume-weighted probabilities. Updated every 10 minutes.
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.
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%}")
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 -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
{
"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"
}
}
X-RapidAPI-Key header. All endpoints return the same consensus data as the direct API.
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.