curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/events?page=1&page_size=20"
const response = await fetch(
"https://www.gomry.com/api/v1/events?page=1&page_size=20",
{ headers: { "X-API-KEY": "your_api_key" } }
);
const { data, pagination } = await response.json();
import requests
response = requests.get(
"https://www.gomry.com/api/v1/events",
headers={"X-API-KEY": "your_api_key"},
params={"page": 1, "page_size": 20},
)
result = response.json()
events = result["data"]
{
"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"
}
],
"pagination": {
"total": 12,
"page": 1,
"page_size": 20,
"total_pages": 1
}
}
Events
List Events
List all events for your organization
GET
/
events
curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/events?page=1&page_size=20"
const response = await fetch(
"https://www.gomry.com/api/v1/events?page=1&page_size=20",
{ headers: { "X-API-KEY": "your_api_key" } }
);
const { data, pagination } = await response.json();
import requests
response = requests.get(
"https://www.gomry.com/api/v1/events",
headers={"X-API-KEY": "your_api_key"},
params={"page": 1, "page_size": 20},
)
result = response.json()
events = result["data"]
{
"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"
}
],
"pagination": {
"total": 12,
"page": 1,
"page_size": 20,
"total_pages": 1
}
}
List Events
Returns a paginated list of events belonging to your organization.Query Parameters
integer
default:"1"
Page number (starts at 1).
integer
default:"50"
Number of events per page. Maximum:
200.string
default:"active"
Comma-separated list of event statuses to include.Allowed values:
active, inactive.Example: ?status=active,inactiveResponse
array
Show Event object
Show Event object
string
Unique event identifier
string | null
Event name
string | null
Event description
string | null
URL-friendly slug
string | null
active or inactivestring | null
open or closedboolean
Whether the event is private
string | null
ISO 4217 currency code
number | null
Maximum capacity
number
Number of tickets sold
object | null
object | null
object | null
string | null
URL of the event cover image
string | null
Virtual meeting URL
string | null
ISO 8601 creation timestamp
string | null
ISO 8601 last-updated timestamp
object
curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/events?page=1&page_size=20"
const response = await fetch(
"https://www.gomry.com/api/v1/events?page=1&page_size=20",
{ headers: { "X-API-KEY": "your_api_key" } }
);
const { data, pagination } = await response.json();
import requests
response = requests.get(
"https://www.gomry.com/api/v1/events",
headers={"X-API-KEY": "your_api_key"},
params={"page": 1, "page_size": 20},
)
result = response.json()
events = result["data"]
{
"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"
}
],
"pagination": {
"total": 12,
"page": 1,
"page_size": 20,
"total_pages": 1
}
}
⌘I
