Webhooks

HMAC signatures

Reliable webhook delivery

Self-Hosted

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.

Overview
Pricing
Usage
Docs
Examples
Send Webhookwebhook.ts
typescript
import { sylphx } from '@sylphx/sdk'

await sylphx.webhooks.send({
  eventType: 'order.completed',
  payload: {
    orderId: 'order_123',
    amount: 99.99,
    currency: 'USD',
  },
})
Register Endpointendpoint.ts
typescript
await sylphx.webhooks.createEndpoint({
  url: 'https://api.customer.com/webhooks',
  events: ['order.completed', 'order.refunded'],
  secret: 'whsec_...',
})

Looking for more examples?

View on GitHub