Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Productivity / Luma API
Luma API logo

Luma API

Official vendor OpenAPI document · agent-readyProductivityCalendar SchedulingapiKey55 EndpointsREST

For Agents

List events on a Luma calendar, look up guests and ticket types, manage coupons and person tags, and orchestrate event RSVPs.

Use for: List all upcoming events on my Luma calendar, Get the guest list for a specific Luma event, Find a specific guest by email on an event, List all ticket types configured on an event

Not supported: Does not handle payment processing, marketing email blasts, or video conferencing - use for Luma event, calendar, guest, ticket type, and coupon read operations only.

The Luma API exposes Luma's events platform - calendars, events, guests, ticket types, coupons, person tags, and admin operations. The 55 endpoints let third-party tools list events on a calendar, look up or invite guests, manage ticket types and coupons, and read calendar membership and tags. Authentication uses an x-luma-api-key header generated from the Luma dashboard.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Luma API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Luma API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fluma.com%2Fluma" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fluma.com%2Fluma" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Luma API.

List events on a calendar with filters and pagination via /v1/calendar/list-events

Retrieve a single event with /v1/event/get and look up specific guests or the full guest list

Manage ticket types and event coupons including listing, creating, and querying coupon usage

List people on a calendar and the person tags applied to them for segmentation

Look up calendar admins and event tags applied across the calendar

Resolve a Luma URL or identifier to its underlying entity via /v1/entity/lookup

Use Cases

Patterns agents use Luma API for, with concrete tasks.

★ Sync Luma events into a CRM or BI tool

Marketing and growth teams pipe Luma events and guest lists into HubSpot, Salesforce, or a warehouse to attribute leads back to the events they attended. /v1/calendar/list-events pulls the event roster, /v1/event/get-guests pulls the guest list per event, and /v1/calendar/list-person-tags pulls segmentation tags. The result is event-level attendance plus tags ready for downstream segmentation.

Call /v1/calendar/list-events for the next 30 days, then for each event call /v1/event/get-guests and write the guest emails plus ticket type to the CRM.

Coupon and ticket-type management for promo campaigns

Event organisers running promo campaigns need to list and create coupons across a calendar or against a specific event, and confirm which ticket types are available. /v1/calendar/coupons and /v1/event/coupons cover coupon listing at both scopes, while /v1/event/ticket-types/list returns the currently configured ticket types for an event. Operations teams use this to keep coupon codes in sync with email and social campaigns.

List the active coupons on calendar 'cal-xyz' via /v1/calendar/coupons and return the codes plus their remaining redemptions.

Resolve Luma URLs into structured event data

Tools that ingest event URLs from emails or chat need to resolve them into structured Luma data without scraping. /v1/entity/lookup and /v1/calendar/lookup-event take an identifier or URL and return the underlying calendar or event entity. This lets a chatbot or agent answer 'what's on this event link?' with first-party data.

Pass a Luma event URL to /v1/calendar/lookup-event and return the structured event title, time, and location.

Agent-driven event check-ins via Jentic

An AI assistant for an event organiser is asked 'who is coming tomorrow and have they paid?'. Jentic stores the x-luma-api-key in your Jentic One instance and exposes the Luma operations by intent so the agent can chain list-events, get-guests, and ticket-types without holding the raw key.

Search Jentic for 'list luma upcoming events', execute it for the next 24 hours, then chain /v1/event/get-guests for each event.

Key Endpoints

55 endpoints — the luma api exposes luma's events platform - calendars, events, guests, ticket types, coupons, person tags, and admin operations.

METHOD

PATH

DESCRIPTION

GET

/v1/calendar/list-events

List events on a calendar

GET

/v1/event/get

Get a single event by ID

GET

/v1/event/get-guests

Get the full guest list for an event

GET

/v1/event/get-guest

Get a specific guest on an event

GET

/v1/event/ticket-types/list

List ticket types configured for an event

GET

/v1/calendar/coupons

List coupons on a calendar

GET

/v1/entity/lookup

Resolve a Luma URL or identifier to its entity

GET

/v1/calendar/list-events

List events on a calendar

GET

/v1/event/get

Get a single event by ID

GET

/v1/event/get-guests

Get the full guest list for an event

GET

/v1/event/get-guest

Get a specific guest on an event

GET

/v1/event/ticket-types/list

List ticket types configured for an event

GET

/v1/calendar/coupons

List coupons on a calendar

GET

/v1/entity/lookup

Resolve a Luma URL or identifier to its entity

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Luma API by hand means sending the x-luma-api-key header on every request and mapping one key across calendar, event, guest, ticket-type, and coupon read paths. Through Jentic you install once, import the Luma API from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

You choose which Luma operations the agent may call, so you can limit it to the read operations it needs, such as listing calendar events or getting an event guest list, and leave out the rest. The agent only reaches the operations in the set you allow.

Credential management

Credential isolation

Your Luma key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'list Luma upcoming events' or 'get an event guest list', and Jentic returns the matching Luma operation with its parameter schema so the agent calls the right endpoint directly.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Meetup

→

Community events platform with groups, events, and RSVPs

Pick Meetup when the audience lives in existing community groups; pick Luma for first-party brand-owned events with custom ticketing and coupons.

Alternative

Cvent

→

Enterprise event management platform for large conferences

Choose Cvent for enterprise conferences with badge printing and abstract management; choose Luma for fast-turnaround community and product events.

Complementary

Calendly

→

1:1 and team scheduling for booked meetings

Use Calendly for 1:1 meeting bookings around an event; use Luma to run the event itself with guests and tickets.

FAQs

Specific to using Luma API through Jentic.

What authentication does the Luma API use?

The Luma API uses an x-luma-api-key header. Generate the key from your Luma dashboard and send it on every request to public-api.luma.com. Through Jentic, the key is stored encrypted in your Jentic One instance and injected per request - the agent never sees the raw key.

Can I list all upcoming events on a calendar with the Luma API?

Yes. Call GET /v1/calendar/list-events with the calendar identifier and a time range. For a single event by ID use GET /v1/event/get, and for resolving an event URL use /v1/calendar/lookup-event.

What are the rate limits for the Luma API?

Specific rate limits are not declared in the OpenAPI spec. Expect per-account fair-use limits - design clients to retry on 429 responses and avoid full-calendar guest list polling more often than once per minute per event.

How do I pull an event's guest list through Jentic?

Search Jentic for 'luma event guests', load GET /v1/event/get-guests, and execute it with the event ID. The x-luma-api-key is injected automatically and the response gives you the guest emails, RSVP state, and ticket type.

Does the Luma API support creating events programmatically?

The 55 endpoints in this spec focus on read access to events, calendars, guests, tags, ticket types, and coupons. If you need to create an event itself, do so in the Luma dashboard and use this API to read and integrate it into downstream tools.

Can I limit what my agent is allowed to do with the Luma API?

Yes. Because Jentic One is self-hosted, you decide which Luma operations the agent may call, so you can restrict it to just the read paths it needs, such as GET /v1/calendar/list-events and GET /v1/event/get-guests, and leave out ticket-type or coupon operations. Your own rules define the allowed operation set and control the x-luma-api-key, so the agent can only reach the endpoints you permit and never handles the raw key. If a request falls outside that set, the agent cannot call it.

GET STARTED

Start building with Luma API

Explore with Jentic One
View OpenAPI Document