Welcome to Verne Relay
Verne Relay is a managed Webhooks-as-a-Service infrastructure designed for teams that need reliable, observable, and scalable event delivery — without building it from scratch.
What is Relay?
At its core, Relay is an HTTP event pipeline: your application publishes events, and Relay guarantees they reach every registered endpoint with retries, signing, and observability built in.
Under the hood, Relay is powered by Svix — the industry-standard webhooks engine — wrapped in a high-performance Rust edge layer that handles authentication, rate-limiting, and tenant isolation for Verne's multi-product platform.
Why Relay?
| Capability | Description |
|---|---|
| Guaranteed Delivery | Automatic exponential backoff with configurable retry policies. |
| Cryptographic Signing | Every payload is HMAC-signed so consumers can verify authenticity. |
| Real-time Dashboard | Monitor delivery status, latency, and failure rates from the Verne Console. |
| Multi-tenant | Each tenant gets isolated endpoints, keys, and event types. |
| Zero Ops | No queues to manage, no workers to scale — just an API call. |
Quick Start
- Generate an API key in the Dashboard.
- Register a webhook endpoint via the API or Console.
- Start sending events from your backend.
curl -X POST https://api.vernesoft.com/v1/relay/messages \
-H "Authorization: Bearer vrn_relay_test_123" \
-H "Content-Type: application/json" \
-d '{"event_type": "user.created", "payload": {"id": "usr_001"}}'
That's it — Relay handles delivery, retries, and logging.