Verify a webhook in Express (Node)
Verify a webhook in Hono
Verify a webhook in Python
No SDK yet for Python — implement manually:Verify a webhook in Go
Dedupe events idempotently
At-least-once delivery means the same event may arrive twice. UseX-Sly-Event-Id as the idempotency key:
Subscribe with wildcards
"*" subscribes to everything (high volume — not recommended in production).
Replay a failed delivery
X-Sly-Event-Id — your idempotency dedupe makes this safe.
Bulk replay from DLQ
Test webhook delivery
Tunnel to localhost with ngrok
PATCH /v1/webhooks/wh_....
Alternative: Cloudflare Tunnel (stable URL, free)
Handle a stale subscription
Your endpoint has been failing for hours and the webhook is nowpaused:
webhook.dlq events to on-call paging so you catch pauses immediately.
