100 million webhooks.
1
flat fee.
Just code.
A webhook queue without the billing anxiety.
Protect your server and your wallet.
export default (request, drip, env, rawBody) => {
// One-line verification for major providers
if (!env.verify(env.secrets.STRIPE_KEY)) return
// Skip duplicates
if (env.dedupe(request.body.id)) return
const billing = "https://billing.myapp.com"
const analytics = "https://analytics.myapp.com"
// Fan-out at independent rates
drip(billing, request.body, { rate: 100 })
drip(analytics, request.body, { rate: 10 })
}