One trace_id across every hop -- from ad click to form submit to webhook delivery. See exactly where your funnel breaks, in real time, at the edge.
Marketing teams run multi-step funnels every day. When something breaks between steps, nobody knows until revenue disappears.
Your link shortener says 1,000 clicks. Your landing page says 600 visits. Where did 400 people go? Nobody knows because each tool lives in its own silo.
Users fill out your form, hit submit, and... silence. Did the data reach your CRM? Did the webhook fire? You find out 3 days later when the sales team complains.
A downstream API returns 500 errors for 6 hours. Your automation quietly breaks. No alert. No retry tracking. Leads rot in a dead queue you didn't know existed.
Edge Funnel Guard stitches together every hop in your funnel with a single trace identifier, monitored in real time.
A single trace_id travels from Linklet (click tracking) through FormDrop (form capture) to HookBin (webhook delivery). Every event is correlated automatically.
See every trace, its current status across all three hops, and drill into individual events. Filter by status, time range, or funnel ID. No SQL required.
Define rules: "alert me if more than 5 traces fail per minute" or "alert if any hookbin hop fails." Get notified before your team notices the revenue dip.
Each step in your marketing funnel reports to Edge Funnel Guard. If any hop fails, you know instantly.
User clicks a tracked link. The click event is recorded with a fresh trace_id.
User lands on a form and submits. The same trace_id is passed along with form data.
Webhook fires to your CRM / automation. Success or failure is logged under the trace_id.
No credit card required. Upgrade when your funnels outgrow the free tier.
Send events from your existing tools. No SDK needed -- just HTTP POST.
curl -X POST https://edge-funnel-guard.dlh166122.workers.dev/api/ingest/event \ -H "Content-Type: application/json" \ -d '{ "trace_id": "t_abc123", "hop": "linklet", "status": "received", "funnel_id": "summer-campaign" }'
curl -X POST https://edge-funnel-guard.dlh166122.workers.dev/api/ingest/event \ -H "Content-Type: application/json" \ -d '{ "trace_id": "t_abc123", "hop": "formdrop", "status": "processed", "payload": { "email": "user@example.com" } }'
curl -X POST https://edge-funnel-guard.dlh166122.workers.dev/api/ingest/event \ -H "Content-Type: application/json" \ -d '{ "trace_id": "t_abc123", "hop": "hookbin", "status": "processed" }'