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?

CapabilityDescription
Guaranteed DeliveryAutomatic exponential backoff with configurable retry policies.
Cryptographic SigningEvery payload is HMAC-signed so consumers can verify authenticity.
Real-time DashboardMonitor delivery status, latency, and failure rates from the Verne Console.
Multi-tenantEach tenant gets isolated endpoints, keys, and event types.
Zero OpsNo queues to manage, no workers to scale — just an API call.

Quick Start

  1. Generate an API key in the Dashboard.
  2. Register a webhook endpoint via the API or Console.
  3. 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.