Book page

Security & Availability

Jake van Berkel • 15 December 2025

Ensuring the secure and reliable delivery of webhook events is paramount. Our system uses an enterprise-grade webhook gateway to provide robust security measures and high availability.

Security measures

  • HMAC-SHA256 Signatures: Every webhook payload is signed using HMAC with SHA-256, allowing your system to verify the authenticity and integrity of the messages.
  • Replay Attack Prevention: Each webhook includes a timestamp and unique identifier, enabling your system to detect and reject duplicate or outdated requests, safeguarding against replay attacks.
  • Static IP addresses: Webhooks are dispatched from static IPs, facilitating easy whitelisting and ensuring that you can trust the source of incoming requests.
  • Detailed logging: We track each webhook event, including delivery attempts, responses, and errors, facilitating easy auditing.

Reliability features

  • Automatic retries with backoff: In the event of a failed delivery, we automatically retry the webhook with exponential backoff and jitter, ensuring eventual delivery without overwhelming your system.
  • Circuit breaking: If an endpoint consistently fails, we temporarily halt deliveries to that endpoint, preventing resource exhaustion and allowing time for recovery.
  • Rate limiting: To protect your infrastructure, we can enforce configurable rate limits on webhook deliveries, ensuring that your system can handle the incoming traffic.
  • Fine-Grained timeouts: Set custom timeout durations for each endpoint, ensuring that slow responses don’t hinder the overall delivery process.
  • High availability architecture: The webhook gateway architecture separates the control and data planes, utilizing PostgreSQL for durability and supporting read/write replicas for scalability and fault tolerance.

By integrating these security and reliability features, we ensure that your webhook events are delivered securely, reliably, and efficiently, allowing you to focus on building and scaling your applications with confidence.