sites/relayapi.json
All demos
Lab
CompanySite
AIMA
Big 7
Soma
Relay API
Harbor
Sunset
ATLAS
POST an event. We handle retries, HMAC signing, exponential backoff, per-endpoint concurrency, and durable receipts. You handle your product.
# fire an event — we handle the rest $ curl -X POST https://api.relayapi.dev/v1/events \ -H "Authorization: Bearer rk_live_..." \ -H "Content-Type: application/json" \ -d '{ "endpoint_id": "ep_9f2a", "type": "order.paid", "data": { "order_id": "o_1029" } }' → 202 Accepted { "event_id": "evt_2Q8h...", "status": "queued" }
If you've written a webhook system before, you know the list. Here it is, managed.
8 attempts over 24h. Exponential curve. Per-endpoint override.
Relay-Signature: t=<unix>,v1=<hex>. Verify in ~5 lines.
Every attempt: status, headers, body, latency. Queryable via API.
Send the same event twice, we deliver it once. Server-side dedup.
Cap in-flight deliveries per endpoint. Never DoS your own customer.
Endpoint 4xx-storming? We back off automatically and alert.
data-site="relayapi". Try asking it: "How do I send my first event?", "How does the retry policy work?", or "How do I verify signatures?"