> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gomry.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Build integrations with the Gomry Public API

# 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

<CardGroup cols={2}>
  <Card title="Events" icon="calendar">
    Events are the core resource. Every other resource (attendees, ticket classes) is scoped to an event.
  </Card>

  <Card title="Attendees" icon="users">
    Attendees represent registrations. Each attendee holds a ticket for an event.
  </Card>

  <Card title="Ticket Classes" icon="ticket">
    Ticket classes define the types of tickets available for an event (e.g., General Admission, VIP).
  </Card>

  <Card title="API Keys" icon="key">
    API keys authenticate requests and are scoped to your organization. Generate them in your dashboard.
  </Card>
</CardGroup>

## Quick Start

<Steps>
  <Step title="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.
  </Step>

  <Step title="Make your first request">
    ```bash theme={null}
    curl -H "X-API-KEY: your_api_key_here" \
      https://www.gomry.com/api/v1/events/YOUR_EVENT_ID
    ```
  </Step>

  <Step title="Explore the response">
    ```json theme={null}
    {
      "data": {
        "id": "AbCdEfGhIjKlMnOpQrSt",
        "name": "My Event",
        "status": "active",
        "start": {
          "utc": "2025-06-15T18:00:00.000Z",
          "timezone": "America/New_York"
        },
        ...
      }
    }
    ```
  </Step>
</Steps>

## Using Claude or another AI assistant?

Skip the API entirely. The [Gomry MCP server](/mcp/introduction) lets Claude, Cursor, and Claude Desktop read your events, attendees, forms, applications, payments, and contacts directly — no code, no API key. Set it up once and ask questions like *"summarize last week's form submissions"* in plain language.
