Documentation

Build on Eventlad

Reference, guides and walkthroughs for the entire platform — from your first published event to webhook-powered integrations.

Getting Started

  • Create your account
  • Publish your first event
  • Set up ticket tiers
  • Configure payouts

Events

  • Event lifecycle
  • Cover art & branding
  • Schedule & venue
  • Categories & visibility

Tickets & Pricing

  • Tier model
  • Currency & taxes
  • Promo codes
  • Refunds & exchanges

Attendees

  • Buyer profiles
  • QR check-in
  • Bulk imports
  • Exports & GDPR

AI Assistant

  • Threads & memory
  • Prompt patterns
  • Marketing studio
  • Cover art generation

Webhooks & API

  • Order events
  • Check-in events
  • Payout events
  • Signing & retries
Quick start — webhook

Receive ticket orders in real time

POST /your/webhook
Content-Type: application/json
X-Eventlad-Signature: t=1719240000,v1=...

{
  "type": "order.completed",
  "event_id": "evt_8f...",
  "order": {
    "id": "ord_4b...",
    "currency": "USD",
    "total_cents": 7500,
    "tickets": [
      { "tier": "Early Bird", "qty": 2 }
    ],
    "buyer": { "email": "fan@example.com" }
  }
}

Verify the signature with your endpoint secret, then return a 2xx within 10 seconds. We retry with exponential backoff for 24 hours.

Need an API key?

Open the dashboard to generate a personal access token — scoped to read events, sync attendees or trigger marketing campaigns.

Open Dashboard