Skip to main content
SDK luma.events.list(params?: EventListParams): Promise<ListResponse<EventListEntry>> Returns a paginated list of events on your calendar.

Parameters

EventListParams
Optional pagination and filter options. See the official Luma API docs for available fields.
See Client — List responses for the shared pagination shape.

Pagination

List methods are cursor-based. Read one page, then pass nextCursor as pagination_cursor to fetch the next page. First page:
Next page (when page.hasMore is true and page.nextCursor is set):
Repeat with each page’s nextCursor until hasMore is false. The same pattern applies to events.guests.list, events.ticketTypes.list, and webhooks.list.

Test it