Use Zapier's Webhooks by Zapier to poll Meridian Edge consensus data and trigger actions in 6,000+ connected apps when probabilities shift.
Connect Zapier to Meridian Edge to access real-time prediction market consensus from 25+ regulated sources. Build no-code automation that sends alerts when consensus crosses a threshold.
Zapier account (starter tier available) — no additional install1. Create a new Zap
2. Trigger: "Schedule by Zapier" → Every Hour
3. Action: "Webhooks by Zapier" → GET
URL: https://meridianedge.io/api/v1/consensus?sport=NBA&limit=10
Headers: X-API-Key: me_live_YOUR_KEY
4. Add a Filter step:
Only continue if divergence_pct > 0.04
5. Action: "Slack" or "Gmail" → send alert
Message: {{title}} consensus: {{consensus_prob}}const events = inputData.events || [];
const alerts = events
.filter(e => parseFloat(e.divergence_pct) > 0.04)
.map(e => `${e.title}: ${Math.round(e.consensus_prob*100)}% (div: ${Math.round(e.divergence_pct*100)}%)`)
.join('\n');
output = [{alerts: alerts || "No high-divergence events"}];Connect your Meridian Edge key to Zapier and start getting prediction market alerts in Slack, email, or any app.
View Plans → API Reference