100 million webhooks.
1
flat-fee.
0 configuration.
A webhook queue without the billing anxiety.
Protect your server and your wallet.
export default (request, drip, env) => {
const event = request.body
// Skip duplicates
if (env.Dedupe(event.id)) return
const billing = "https://billing.myapp.com/fulfill"
const analytics = "https://analytics.myapp.com/event"
// Fan-out at independent rates
drip(billing, event.data, { rate: 100 })
drip(analytics, event.data, { rate: 10 })
}