curl -H "X-API-KEY: your_api_key" \
https://www.gomry.com/api/v1/events/AbCdEfGhIjKlMnOpQrSt
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"name": "Summer Tech Conference 2025",
"description": "A two-day conference covering the latest in tech.",
"slug": "summer-tech-conference-2025-AbCdEfGhIjKlMnOpQrSt",
"status": "active",
"registration_status": "open",
"is_private": false,
"currency": "USD",
"capacity": 500,
"tickets_sold": 234,
"start": {
"utc": "2025-07-15T14:00:00.000Z",
"timezone": "America/New_York"
},
"end": {
"utc": "2025-07-16T22:00:00.000Z",
"timezone": "America/New_York"
},
"venue": {
"name": "Convention Center",
"address": "123 Main St",
"city": "New York",
"state": "NY",
"country": "US"
},
"cover_image": "https://storage.googleapis.com/...",
"meeting_url": null,
"created_at": "2025-03-01T10:00:00.000Z",
"updated_at": "2025-06-20T15:30:00.000Z"
}
}
Events
Get Event
Retrieve details of a single event
GET
/
events
/
{eventId}
curl -H "X-API-KEY: your_api_key" \
https://www.gomry.com/api/v1/events/AbCdEfGhIjKlMnOpQrSt
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"name": "Summer Tech Conference 2025",
"description": "A two-day conference covering the latest in tech.",
"slug": "summer-tech-conference-2025-AbCdEfGhIjKlMnOpQrSt",
"status": "active",
"registration_status": "open",
"is_private": false,
"currency": "USD",
"capacity": 500,
"tickets_sold": 234,
"start": {
"utc": "2025-07-15T14:00:00.000Z",
"timezone": "America/New_York"
},
"end": {
"utc": "2025-07-16T22:00:00.000Z",
"timezone": "America/New_York"
},
"venue": {
"name": "Convention Center",
"address": "123 Main St",
"city": "New York",
"state": "NY",
"country": "US"
},
"cover_image": "https://storage.googleapis.com/...",
"meeting_url": null,
"created_at": "2025-03-01T10:00:00.000Z",
"updated_at": "2025-06-20T15:30:00.000Z"
}
}
Get Event
Returns the details of an event that belongs to your organization.Path Parameters
The unique identifier of the event (Firestore document ID).
Response
Show Event object
Show Event object
Unique event identifier
Event name
Event description
URL-friendly slug
Event status:
active, inactive, or deletedopen or closedWhether the event is private
ISO 4217 currency code (e.g.,
USD, EUR)Maximum capacity
Number of tickets sold
URL of the event cover image
Virtual meeting URL (for online events)
ISO 8601 creation timestamp
ISO 8601 last-updated timestamp
curl -H "X-API-KEY: your_api_key" \
https://www.gomry.com/api/v1/events/AbCdEfGhIjKlMnOpQrSt
{
"data": {
"id": "AbCdEfGhIjKlMnOpQrSt",
"name": "Summer Tech Conference 2025",
"description": "A two-day conference covering the latest in tech.",
"slug": "summer-tech-conference-2025-AbCdEfGhIjKlMnOpQrSt",
"status": "active",
"registration_status": "open",
"is_private": false,
"currency": "USD",
"capacity": 500,
"tickets_sold": 234,
"start": {
"utc": "2025-07-15T14:00:00.000Z",
"timezone": "America/New_York"
},
"end": {
"utc": "2025-07-16T22:00:00.000Z",
"timezone": "America/New_York"
},
"venue": {
"name": "Convention Center",
"address": "123 Main St",
"city": "New York",
"state": "NY",
"country": "US"
},
"cover_image": "https://storage.googleapis.com/...",
"meeting_url": null,
"created_at": "2025-03-01T10:00:00.000Z",
"updated_at": "2025-06-20T15:30:00.000Z"
}
}
⌘I
