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

# List events

`GET /events`

Returns a paginated list of events owned by the authenticated user. Can be filtered by schedule, date range, and paginated.

## Query parameters

- `subdomain` string
- `starts_after` string, date
- `starts_before` string, date
- `venue_id` string
- `category_id` integer
- `name` string
- `schedule_type` 'single' | 'recurring'
- `tickets_enabled` boolean
- `group_id` string
- `page` integer
- `per_page` integer

## Response `200`

List of events

- object
  - `data` Event[]
    - `id` string — Encoded event ID
    - `url` string, uri — Public URL of the event
    - `name` string — Event name
    - `short_description` string, nullable — Brief event description
    - `description` string, nullable — Full event description (may contain markdown)
    - `starts_at` string, date-time — Event start date and time in UTC (Y-m-d H:i:s)
    - `duration` number, nullable — Event duration in hours
    - `category_id` integer, nullable — Category ID from /categories
    - `category_name` string, nullable — Human-readable category name
    - `event_url` string, uri, nullable — External URL for the event
    - `registration_url` string, uri, nullable — External registration URL
    - `venue_id` string, nullable — Encoded ID of the associated venue schedule
    - `venue_name` string, nullable — Name of the associated venue
    - `venue_address1` string, nullable — Street address of the associated venue
    - `venue_subdomain` string, nullable — Subdomain of the associated venue schedule
    - `flyer_image_url` string, uri, nullable — URL of the flyer image
    - `is_private` boolean — Whether the event is private (hidden from calendar, only accessible via direct link)
    - `is_password_protected` boolean — Whether the event page is protected by a password
    - `schedule_type` 'single' | 'recurring' — Whether this is a single or recurring event
    - `recurring_frequency` 'daily' | 'weekly' | 'every_n_weeks' | 'monthly_date' | 'monthly_weekday' | 'yearly', nullable — Recurrence frequency (only present for recurring events)
    - `recurring_interval` integer, nullable — Interval for every_n_weeks frequency (only present for recurring events)
    - `days_of_week` string, nullable — 7-character string where each position represents a day (Sunday to Saturday), '1' means active (only present for recurring events)
    - `recurring_end_type` 'never' | 'on_date' | 'after_events', nullable — How the recurrence ends (only present for recurring events)
    - `recurring_end_value` string, nullable — End date (Y-m-d) or number of occurrences, depending on recurring_end_type
    - `tickets_enabled` boolean — Whether ticket sales are enabled for this event
    - `ticket_currency_code` string, nullable — 3-letter ISO currency code for tickets
    - `payment_method` 'stripe' | 'invoiceninja' | 'payment_url' | 'manual', nullable — Payment method for ticket sales
    - `terms_url` string, uri, nullable — URL to terms and conditions for ticket sales
    - `tickets` Ticket[] — Ticket types for this event (only present when tickets are enabled)
      - `id` string — Encoded ticket ID
      - `type` string — Ticket type name
      - `price` number — Ticket price
      - `quantity` integer, nullable — Number of tickets available (null for unlimited)
      - `description` string, nullable — Ticket description
    - `members` object — Map of encoded member schedule IDs to member details
    - `event_parts` EventPart[] — Sub-sections or segments of the event
      - `id` string — Encoded part ID
      - `name` string — Part name
      - `description` string, nullable — Part description
      - `start_time` string, nullable — Start time for this part
      - `end_time` string, nullable — End time for this part
    - `schedules` object[] — Schedules associated with this event
      - `id` string — Encoded schedule ID
      - `subdomain` string — Schedule subdomain
      - `name` string — Schedule name
      - `type` 'venue' | 'talent' | 'curator' — Schedule type
      - `group` object, nullable — Sub-schedule assignment for this event on this schedule
        - `id` string — Encoded sub-schedule ID
        - `name` string — Sub-schedule name
        - `slug` string — Sub-schedule slug
    - `created_at` string, date-time, nullable — ISO 8601 creation timestamp
    - `updated_at` string, date-time, nullable — ISO 8601 last update timestamp
  - `meta` Pagination
    - `current_page` integer — Current page number
    - `from` integer, nullable — First item number on this page
    - `last_page` integer — Last page number
    - `per_page` integer — Items per page
    - `to` integer, nullable — Last item number on this page
    - `total` integer — Total number of items
    - `path` string, uri — Base URL for pagination

## Other responses

- `401` — Missing or invalid API key

## Changes

- **2026-02-23** `37529a7e8800` — 2 info
  - added the optional property `data/items/is_password_protected` to the response with the `200` status
  - added the optional property `data/items/is_private` to the response with the `200` status
- **2026-02-17** `c1e54e26b0db` — 14 info
  - added the new optional `query` request parameter `category_id`
  - added the new optional `query` request parameter `group_id`
  - added the new optional `query` request parameter `name`
  - added the new optional `query` request parameter `schedule_type`
  - …10 more
- **2026-02-12** `2596baa89e80` — 1 breaking, 1 info
  - for the `query` request parameter `per_page`, the max was decreased from `1000.00` to `500.00`
  - added the optional property `data/items/event_parts/items/id` to the response with the `200` status
- **2026-02-11** `e24c8532211b` — 1 info
  - api operation id `list_events` was added
- **2026-02-11** `36ccba39bc4d` — 17 warning, 2 info
  - deleted the `query` request parameter `category_id`
  - deleted the `query` request parameter `group_id`
  - deleted the `query` request parameter `name`
  - deleted the `query` request parameter `schedule_type`
  - …15 more

[Change history](https://skmtc.dev/eventschedule/apis/event-schedule-api/changes/events/get.md)

---

[API](https://skmtc.dev/eventschedule/apis/event-schedule-api.md) · [All operations](https://skmtc.dev/eventschedule/apis/event-schedule-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/eventschedule/event-schedule-api/revisions/fc24d7d227c4/schema)
