Reliable webhook delivery
Enterprise-grade webhook delivery for your application. Send events to your users' endpoints with HMAC signatures, automatic retries with exponential backoff, and detailed delivery logs.
import { sylphx } from '@sylphx/sdk'
await sylphx.webhooks.send({
eventType: 'order.completed',
payload: {
orderId: 'order_123',
amount: 99.99,
currency: 'USD',
},
})await sylphx.webhooks.createEndpoint({
url: 'https://api.customer.com/webhooks',
events: ['order.completed', 'order.refunded'],
secret: 'whsec_...',
})Looking for more examples?
View on GitHub