Documentation

    Build with EventoGate

    Everything you need to integrate EventoGate into your stack — from first API call to production-ready automations.

    javascript
    // 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", ... }

    Questions about the API?

    Our team is happy to help with integration questions, custom requirements, or anything else.