---
title: "List events"
method: GET
path: "/events"
tags: ["Events"]
---

# List events

`GET /events`

List events with filters for status, approval, visibility, and promoter. Supports full‑text search (query), geo search (latitude/longitude/radius), and cursor-based pagination.

## Query parameters

- `status` 'UPCOMING' | 'ENDED' — Filter events by their current lifecycle status
- `approval` 'PENDING' | 'APPROVED' | 'REJECTED' — Filter events by their approval status
- `visibility` 'PUBLIC' | 'PRIVATE' | 'SCHEDULED' | 'PASSCODE' — Filter events by their visibility setting
- `promoterId` string — Filter events to only those belonging to a specific promoter. If not provided, returns events from all promoters the user has access to
- `teamId` string — Filter events to only those belonging to a specific team. If not provided, returns events from all teams the user has access to
- `venueId` string — Filter events to only those at a specific venue. If not provided, returns events at all venues
- `limit` number — Maximum number of events to return in each result set. Must be between 1 and 100, defaults to 20
- `cursor` string — Cursor token for pagination. Provide the cursor from the previous response to continue fetching results
- `query` string — Search term to filter events by name, description, or location. Triggers full‑text search when provided
- `latitude` number — Latitude coordinate for geographic search. Provide with longitude (and optional radius)
- `longitude` number — Longitude coordinate for geographic search. Provide with latitude (and optional radius)
- `radius` number — Search radius in kilometers from the provided coordinates. Defaults to 20km
- `country` string — Filter by country region slug. Matches events where location.country equals the region name
- `state` string — Filter by state/province region slug. Matches events where location.state equals the region name
- `city` string — Filter by city region slug. Matches events where location.city equals the region name
- `from` string, date — Filter events that start on or after this date (YYYY-MM-DD format). Events with entryStartsAt >= from
- `to` string, date — Filter events that start on or before this date (YYYY-MM-DD format). Events with entryStartsAt <= to
- `sort` 'entryStartsAt' | 'createdAt' — Optional list sort field. Defaults to event start time. Use `createdAt` to return newest or oldest events first.
- `direction` 'asc' | 'desc' — Sort direction for event lists. Defaults to lifecycle-aware event start order unless `sort` is provided.
- `genres` string[] — Filter events by music genre(s). Returns events matching ANY of the provided genres (OR logic). Maximum 20 genres
- `categories` string[] — Filter events by category(s). Returns events matching ANY of the provided categories (OR logic). Maximum 10 categories
- `featured` boolean — Filter to only featured (editorial pick) events

## Response `200`

OK

- object
  - `events` object[], required — Array of events for the current result set
    - `id` string, required — A unique identifier for this event
    - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when this event was created
    - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when this event was last updated
    - `name` string, required — The title of the event shown to attendees
    - `slug` string, required — URL-friendly identifier for the event
    - `description` string, required — Detailed description of the event
    - `approval` 'PENDING' | 'APPROVED' | 'REJECTED', required — Approval status of the event
    - `status` 'UPCOMING' | 'ENDED', required — Current stage of the event lifecycle
    - `visibility` 'PUBLIC' | 'PRIVATE' | 'SCHEDULED' | 'PASSCODE' | 'CANCELLED', required — Who can see the event
    - `currency` 'AED' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BZD' | 'CAD' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MNT' | 'MOP' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SEK' | 'SGD' | 'SHP' | 'SLE' | 'SRD' | 'SVC' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'ZAR' | 'ZMW' | 'ZWL', required — Three-letter ISO 4217 currency code used for ticket prices
    - `url` string, uri — External URL for the event website or ticket page
    - `entryStartsAt` string, required — Wall clock time when event entry begins (no timezone, displays same everywhere)
    - `entryEndsAt` string, required — Wall clock time when event entry ends (no timezone, displays same everywhere)
    - `publishAt` string, required — Wall clock time when the event becomes publicly visible (no timezone)
    - `locationRevealAt` string — Deprecated. Use location.sendAt for customer access and location.publishAt for scheduled public address visibility.
    - `entryInstructions` string — Deprecated. Use location.instructions for customer-facing arrival instructions.
    - `images` object, required
      - `mobile` object, required — Mobile-optimized image for the event
        - `src` string, uri, required
        - `alt` string, required
        - `width` number, required
        - `height` number, required
      - `desktop` object, required — Desktop-optimized image for the event
        - `src` string, uri, required
        - `alt` string, required
        - `width` number, required
        - `height` number, required
    - `geohash` string, required — Geohash representing the event location
    - `location` object, required — Structured location details for the event
      - `id` string, required — Location identifier
      - `googlePlaceId` string — Google Place ID for this location
      - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when the location was created
      - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when the location was last updated
      - `name` string, required — Location name
      - `address` string, required — Formatted address
      - `city` string — City name
      - `state` string — State or region
      - `postcode` string — Postal code
      - `country` string, required — Country name
      - `latitude` number, required — Latitude coordinate
      - `longitude` number, required — Longitude coordinate
      - `timeZone` string, required — IANA timezone identifier (e.g., 'America/New_York', 'Europe/London', 'Australia/Sydney', 'UTC'). Must be validated against the IANA timezone database where used.
      - `types` string[] — Google Place types indicating the category and nature of this location
      - `description` string — AI-generated description of the place, when available
      - `image` object — Primary location photo
        - `src` string, uri, required
        - `alt` string, required
        - `width` number, required
        - `height` number, required
      - `venue` object — Denormalized venue details if this location is a managed venue. Only included when venue is approved.
        - `id` string, required — Venue identifier
        - `name` string, required — Venue name
        - `slug` string, required — URL-friendly venue slug
        - `teamId` string, required — Team that owns this venue
        - `approval` 'PENDING' | 'APPROVED' | 'REJECTED', required — Venue approval status
        - `image` object — Venue image
          - `src` string, uri, required
          - `alt` string, required
          - `width` number, required
          - `height` number, required
        - `description` string — Venue description
      - `visibility` 'HIDDEN' | 'SCHEDULED' | 'PUBLIC' — Whether public event surfaces show the full location address. Missing values are treated as PUBLIC unless legacy location reveal data says otherwise.
      - `publishAt` string — Wall clock time when the location address becomes public. Required when location visibility is SCHEDULED.
      - `sendAt` string — Wall clock time when customers with successful orders can see the full location address and receive the notification.
      - `instructions` string — Arrival instructions shown to customers once the location address has been sent.
    - `teamId` string, required — Team that owns this event. Denormalized for efficient queries.
    - `promoterId` string, required — Promoter organizing the event. Must belong to the team.
    - `metadata` object — Flexible key-value metadata storage for custom configuration. Similar to Stripe's metadata API. Maximum 50 keys, key names up to 40 characters, values up to 500 characters.
    - `genres` string[] — Music genres for the event (1-5 genres)
    - `categories` string[] — Event characteristics like vibe, venue type, and amenities (up to 10)
    - `featured` boolean — Whether this event is an editorial pick
    - `likes` integer — Number of users who liked this event
    - `stripeConnectAvailability` object — Stripe Connect availability metadata for tenant event UI.
      - `available` boolean, required — Whether Stripe Connect can be used for the selected team, event, and currency.
      - `reasons` string[], required — Machine-readable reasons Stripe Connect is unavailable. Empty when available is true.
      - `supportedCurrencies` string[], required — Currencies currently supported for Stripe Connect routing in this tenant flow.
    - `inventory` object
      - `admissions` integer — Number of active admissions configured for the event
      - `sold` number, required — Number of tickets sold (net of refunds)
      - `reserved` number, required — Number of tickets reserved
      - `available` number, required — Number of tickets available (-1 for unlimited)
      - `capacity` number, required — Total capacity (-1 for unlimited)
    - `liked` boolean — Whether the current user has liked this event
    - `price` object, nullable, required — Cheapest publicly purchasable admission price for this event, selected by base price
      - `base` integer, required — Base cost of a ticket for this admission type before fees, in cents
      - `booking` integer, required — Booking fee for the cheapest publicly purchasable admission, in cents
      - `currency` 'AED' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BZD' | 'CAD' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MNT' | 'MOP' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SEK' | 'SGD' | 'SHP' | 'SLE' | 'SRD' | 'SVC' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'ZAR' | 'ZMW' | 'ZWL', required — Three-letter ISO 4217 currency code for the cheapest publicly purchasable admission
      - `override` object — Optional pricing override used to calculate derived fee amounts.
        - `booking` number, required — Booking fee percentage used to calculate the booking fee.
  - `before` string, nullable — Cursor for navigating backward in the result set. Omitted when there are no prior results.
  - `after` string, nullable — Cursor for navigating forward in the result set. Omitted when there are no subsequent results.
  - `limit` number, required — Maximum number of items to return in each result set

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `412` — 412
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503

---

[API](https://skmtc.net/session/apis/session-services-api.md) · [All operations](https://skmtc.net/session/apis/session-services-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/session/session-services-api/versions/bec3de84da9e/schema)
