RelayKit ensures your webhooks are delivered reliably with automatic retries, comprehensive monitoring, and easy replay functionality.
Join Waitlist Learn MoreEverything you need for reliable webhook delivery
Automatic retries with exponential backoff ensure your webhooks reach their destination.
Track every delivery attempt with detailed logs including response codes and latency.
Replay failed events with a single click to ensure no data is lost.
All webhooks are cryptographically signed for enhanced security and verification.
Simple REST API with comprehensive documentation and SDK examples.
Built with Django, Celery, and Redis for scalable, high-performance delivery.
Modern React dashboard for monitoring events, managing endpoints, and debugging.
Built-in rate limiting (1000 requests/minute) protects your endpoints.
Get started with RelayKit in minutes using your preferred language
import requests
API_URL = "https://api.relaykit.dev/v1"
API_KEY = "your_api_key_here"
# Create an event
response = requests.post(
    f"{API_URL}/events/",
    json={
        "type": "invoice.created",
        "data": {
            "invoice_id": "inv_123",
            "amount": 4200,
            "currency": "GBP"
        }
    },
    headers={
        "Authorization": f"Bearer {API_KEY}",
        "Content-Type": "application/json"
    }
)
print(response.json())  # {"id": "evt_abc123", "status": "queued"}
                        const axios = require('axios');
const API_URL = 'https://api.relaykit.dev/v1';
const API_KEY = 'your_api_key_here';
const client = axios.create({
  baseURL: API_URL,
  headers: {
    'Authorization': `Bearer ${API_KEY}`,
    'Content-Type': 'application/json'
  }
});
// Create an event
async function createEvent() {
  const response = await client.post('/events/', {
    type: 'invoice.created',
    data: {
      invoice_id: 'inv_123',
      amount: 4200,
      currency: 'GBP'
    }
  });
  console.log(response.data); // { id: 'evt_abc123', status: 'queued' }
}
                        Also supported:
Be the first to know when RelayKit launches. Get early access and exclusive updates.
We respect your privacy. Unsubscribe at any time.