Webhooks
Webhooks recipes
4 admin-reviewed Webhooks starting points in the Vault, each installable with one command. Browse every category →
Inbound Email Processing
Receiving and parsing inbound email (a support-desk reply-by-email, a newsletter bounce handler, anything that turns an email into a database record) via your provider's inbound-parse webhook — the inbound-email counterpart to the general Webhook Receiver recipe.
by @ops
Outbound Webhook Delivery Service
The sending side, not the receiving side — YOUR app delivering webhooks to customers/integrations, with signing, retry/backoff on failure, and a delivery log they (and you) can actually inspect. Pairs with the Webhook Receiver recipe as the complete inbound+outbound picture.
by @ops
Webhook Receiver & Event Ingestion
Idempotent webhook ingestion with signature verification and a Redis-backed queue plus worker for async, retry-safe processing — the pattern every Stripe/GitHub/Twilio integration needs and almost always ends up building from scratch, badly, under time pressure.
by @ops
Webhook Testing & Replay Tool Backend
Captures incoming webhook payloads for inspection and replay during development — a debugging tool, not a production integration. The backend behind a self-hosted "webhook.site"-style utility.
by @ops