Events
List events
List events on your Luma calendar with luma.events.list(), returning a paginated response of event entries with optional filters and pagination.
SDK
See Client — List responses for the shared pagination shape.
Next page (when
Repeat with each page’s
luma.events.list(params?: EventListParams): Promise<ListResponse<EventListEntry>>
Returns a paginated list of events on your calendar.
Parameters
Optional pagination and filter options. See the official Luma API docs for available fields.
Pagination
List methods are cursor-based. Read one page, then passnextCursor as pagination_cursor to fetch the next page.
First page:
page.hasMore is true and page.nextCursor is set):
nextCursor until hasMore is false. The same pattern applies to events.guests.list, events.ticketTypes.list, and webhooks.list.