Gomry Public API
The Gomry API lets you programmatically access your event data — attendees, ticket classes, and more — to build integrations, sync with third-party tools, or power your own dashboards.Base URL
All API requests use the following base URL:Key Concepts
Events
Events are the core resource. Every other resource (attendees, ticket classes) is scoped to an event.
Attendees
Attendees represent registrations. Each attendee holds a ticket for an event.
Ticket Classes
Ticket classes define the types of tickets available for an event (e.g., General Admission, VIP).
API Keys
API keys authenticate requests and are scoped to your organization. Generate them in your dashboard.
Quick Start
Generate an API key
Go to Organization Settings → API Keys in your Gomry dashboard and create a new key.
Copy it immediately — it’s only shown once.
Available Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /events | List your organization’s events |
GET | /events/:eventId | Get event details |
GET | /events/:eventId/attendees | List attendees |
GET | /events/:eventId/attendees/:attendeeId | Get single attendee |
GET | /events/:eventId/ticket-classes | List ticket classes |
GET | /events/:eventId/ticket-classes/:ticketClassId | Get single ticket class |
