Developers
Brunchie API
A small, friendly HTTP API for getting event media into Brunchie. Today it covers booth & guestbook uploads — send a photo, video, GIF, strip, or voice memo straight into an event's live shared album.
The basics
Base URL
https://brunchie.app
Authentication
Every request carries the event's booth key in the X-Api-Token
header. The host copies it from Tools → Connect a booth in their event. It's a
7-day rotating secret — not the share link — so grab a fresh one if it stops working.
X-Api-Token: your-event-booth-key
Two ways to send media
- Direct file upload (recommended — no third-party host). POST the file bytes
as
multipart/form-data. Works with Breeze Booth, Darkroom Booth, Sparkbooth, an Apple Shortcuts folder-watch, or any tool that can run an HTTP POST. - URL fallback. Send a public URL and Brunchie downloads it — how native LumaBooth / dslrBooth webhooks work (they upload to their own cloud and emit a URL).
Endpoint
POST /api/v1/webhooks/booth?event_id=<event-slug>
The /lumabooth and /audio_guestbook paths are
kept as aliases so existing integrations keep working.