Skip to main content

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:
https://www.gomry.com/api/v1

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

1

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.
2

Make your first request

curl -H "X-API-KEY: your_api_key_here" \
  https://www.gomry.com/api/v1/events/YOUR_EVENT_ID
3

Explore the response

{
  "data": {
    "id": "AbCdEfGhIjKlMnOpQrSt",
    "name": "My Event",
    "status": "active",
    "start": {
      "utc": "2025-06-15T18:00:00.000Z",
      "timezone": "America/New_York"
    },
    ...
  }
}

Available Endpoints

MethodEndpointDescription
GET/eventsList your organization’s events
GET/events/:eventIdGet event details
GET/events/:eventId/attendeesList attendees
GET/events/:eventId/attendees/:attendeeIdGet single attendee
GET/events/:eventId/ticket-classesList ticket classes
GET/events/:eventId/ticket-classes/:ticketClassIdGet single ticket class