AUTOMATION · NO-CODE

Meridian Edge + Zapier

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.

Requirements

InstallZapier account (starter tier available) — no additional install

Integration Code

Zapier Setup Steps
1. 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}}
Zapier Code Step — Format Alertjavascript
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"}];

Try it — API key in 10 seconds

Connect your Meridian Edge key to Zapier and start getting prediction market alerts in Slack, email, or any app.

View Plans → API Reference

Frequently Asked Questions

How do I use Meridian Edge in Zapier?
Use the Webhooks by Zapier action with a GET request to https://meridianedge.io/api/v1/consensus. Set the X-API-Key header to your API key. Add a Filter step to trigger only when divergence_pct exceeds your threshold.
What does the Meridian Edge API cost for Zapier automations?
Yes. Starter tier: 100 calls/day. A Zapier hourly poll uses 24 calls/day — well within the starter limit. Get a key at meridianedge.io/#pricing.