Everything you need to integrate EventoGate into your stack — from first API call to production-ready automations.
// Register an attendee
const res = await fetch(
"https://api.eventogate.com/v1/events/evt_01HXYZ/attendees",
{
method: "POST",
headers: {
"Authorization": "Bearer eg_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
first_name: "Sarah",
last_name: "Chen",
email: "sarah@example.com",
ticket_type_slug: "general",
}),
}
);
const attendee = await res.json();
// { id: "att_09BXYZ", qr_code: "QR_att_09BXYZ", ... }Start with the quick-start guide, then explore the full reference when you need details.
Make your first API call in under 5 minutes. Create an event, register an attendee, and verify the response.
Detailed documentation for every endpoint — Events, Attendees, Check-in, and Webhooks — with request and response examples.
Subscribe to attendee.registered, attendee.checked_in, and other triggers. Verify HMAC signatures and build automations.
Use outbound webhooks to sync with Salesforce, HubSpot, Zapier, Make, and any tool that accepts HTTP.
Embed a registration form on your own website and push submissions to EventoGate via the API. Supports custom fields, UTM tracking, and ticket types.
Understand API key scopes, webhook signature verification, and best practices for keeping your integration secure.