Discover/Luma API
live

Luma APIluma.com

Access public Luma (lu.ma) event data by location. Search events, get host details, ticket availability, coordinates, and guest info via 2 structured endpoints.

Endpoint health
verified 6d ago
search_events
get_event_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Luma API?

The Luma API exposes 2 endpoints for discovering and inspecting public events on lu.ma. search_events returns paginated event listings filtered by city name, custom lat/lng, or Luma place ID, while get_event_details delivers per-event data including host profiles, ticket availability, sold-out status, full address, and ISO 8601 start/end times.

Try it
Maximum number of events to return (max 50 per page).
Opaque pagination cursor from a previous response's next_cursor field.
Custom latitude coordinate. Use together with longitude instead of location.
City name for location-based search. Built-in coordinates exist for: New York, San Francisco, London, Tokyo, Bangalore, Bengaluru, Mumbai, Delhi. Other city names are passed as-is.
Luma discover place API ID (e.g., 'discplace-G0tGUVYwl7T17Sb'). When provided, overrides location and lat/lng.
Custom longitude coordinate. Use together with latitude instead of location.
api.parse.bot/scraper/c6dfcba3-0e2a-48c5-8e21-f562868d7bf2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c6dfcba3-0e2a-48c5-8e21-f562868d7bf2/search_events?limit=5&latitude=40.7128&location=New+York&place_id=discplace-G0tGUVYwl7T17Sb&longitude=-74.0060' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace luma-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Luma Events API — discover public events by location, drill into details."""
from parse_apis.luma_events_api import Luma, Location, EventNotFound

client = Luma()

# Search for upcoming events in San Francisco, capped at 5 total items.
for event in client.events.search(location=Location.SAN_FRANCISCO, limit=5):
    print(event.name, event.city, event.start_at, event.is_free)

# Drill into the first result for full details (hosts, guests, tickets).
summary = client.events.search(location=Location.NEW_YORK, limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.guest_count, detail.sold_out)
    for host in detail.hosts:
        print(host.name, host.avatar_url)

# Fetch a known event directly by its API ID.
try:
    event = client.events.get(event_api_id="evt-DmSmWL7HBwk4xNd")
    print(event.name, event.timezone, event.ticket_info.is_free)
except EventNotFound as exc:
    print(f"Event gone: {exc.event_api_id}")

print("exercised: events.search / EventSummary.details / events.get / EventNotFound")
All endpoints · 2 totalmissing one? ·

Search for upcoming public events by geographic location. Accepts a city name (with built-in coordinates for major cities), custom latitude/longitude, or a Luma place ID. Returns a paginated list of events ordered by start time. Each event includes basic info, hosts, ticket pricing, and location. Pagination uses an opaque cursor; the response indicates whether more results exist.

Input
ParamTypeDescription
limitintegerMaximum number of events to return (max 50 per page).
cursorstringOpaque pagination cursor from a previous response's next_cursor field.
latitudestringCustom latitude coordinate. Use together with longitude instead of location.
locationstringCity name for location-based search. Built-in coordinates exist for: New York, San Francisco, London, Tokyo, Bangalore, Bengaluru, Mumbai, Delhi. Other city names are passed as-is.
place_idstringLuma discover place API ID (e.g., 'discplace-G0tGUVYwl7T17Sb'). When provided, overrides location and lat/lng.
longitudestringCustom longitude coordinate. Use together with latitude instead of location.
Response
{
  "type": "object",
  "fields": {
    "events": "array of event summary objects",
    "has_more": "boolean indicating if more results are available",
    "next_cursor": "string opaque pagination cursor for the next page",
    "total_returned": "integer count of events in this response"
  },
  "sample": {
    "data": {
      "events": [
        {
          "url": "i5ju0s29",
          "city": "New York",
          "name": "The 20th Annual Notable Occasion",
          "hosts": [
            {
              "name": "Akari Machino",
              "avatar_url": "https://cdn.lu.ma/avatars-default/avatar_16.png"
            }
          ],
          "end_at": "2026-06-11T14:00:00.000Z",
          "address": "Carnegie Hall, 57th Street and, 7th Ave, New York, NY 10019, USA",
          "country": "United States",
          "is_free": true,
          "start_at": "2026-06-11T10:00:00.000Z",
          "timezone": "America/New_York",
          "cover_url": "https://images.lumacdn.com/uploads/dn/afb1192c-97c1-41be-b5e0-81e4390798ff.png",
          "city_state": "New York, NY",
          "description": "",
          "guest_count": 5,
          "event_api_id": "evt-FaBuCmOx5GFoWHn",
          "ticket_price": 0,
          "calendar_name": "Personal",
          "location_type": "offline",
          "ticket_currency": ""
        }
      ],
      "has_more": true,
      "next_cursor": "eyJzdiI6IjIwMjYtMDYtMTEgMTE6MDA6MDArMDAiLCJmYiI6ImV2dC1xOXBkTmxTVTl1NllKQ2kifQ",
      "total_returned": 3
    },
    "status": "success"
  }
}

About the Luma API

Search Events by Location

search_events accepts a location string (e.g., "San Francisco" or "Tokyo") with built-in coordinate resolution for major cities, or raw latitude/longitude values for any geographic point. You can also pass a place_id (e.g., discplace-G0tGUVYwl7T17Sb) to target a specific Luma discovery area. Results are paginated: each response includes a next_cursor string and a has_more boolean. Pass the cursor back as the cursor parameter to fetch the next page. Each page returns up to 50 events, and total_returned tells you how many came back in the current response.

Event Search Response Fields

Each object in the events array includes event_api_id, name, description, start_at, end_at, timezone, url, cover_url, location_type, and address. The event_api_id value (e.g., evt-DmSmWL7HBwk4xNd) is the key input to get_event_details for retrieving full event data.

Event Detail Fields

get_event_details takes a single required parameter, event_api_id, and returns a richer record: hosts (array with name, username, avatar_url, and bio), sold_out boolean, country, city, address, start_at, end_at, timezone, and url. This is where you get host identity data and ticket availability signals not present in the search results.

Reliability & maintenanceVerified

The Luma API is a managed, monitored endpoint for luma.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when luma.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official luma.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a local event discovery app that filters lu.ma events by city using the location parameter.
  • Aggregate event host profiles (name, bio, avatar) for speaker or organizer research.
  • Monitor sold-out status on specific events using the sold_out field from get_event_details.
  • Pull event coordinates and addresses for plotting public events on a map.
  • Paginate through all upcoming events in a metro area by chaining next_cursor values.
  • Feed event start/end times and timezone into a calendar or scheduling tool.
  • Identify events by a specific Luma place ID to scope results to a defined discovery region.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Luma have an official developer API?+
Luma does not publish a general-purpose public developer API. There is no documented REST or GraphQL API available to third-party developers on the lu.ma website as of mid-2025.
What does `get_event_details` return beyond what `search_events` includes?+
get_event_details adds host objects (with name, username, avatar_url, and bio), a sold_out boolean, and country and city fields. The search results give you enough to identify an event; the detail endpoint gives you the host identity and ticket availability data needed to act on it.
Does the API cover private or invite-only Luma events?+
No. Both endpoints return only publicly listed events on lu.ma. Private and invite-only events are not accessible. The API covers public event search and public event detail records. You can fork this API on Parse and revise it if you have a specific use case around unlisted event IDs you already know.
Does the API return attendee lists or RSVP counts?+
Not currently. The API exposes host profiles and sold-out status but does not return attendee lists, RSVP counts, or guest capacity numbers. You can fork this API on Parse and revise it to add an endpoint targeting that data if it becomes available in the public event pages.
How does pagination work with `search_events`?+
The response includes a has_more boolean and a next_cursor string. When has_more is true, pass the next_cursor value as the cursor parameter in your next request to retrieve the following page. Each page returns at most 50 events, and total_returned reflects the count in the current page only, not the total across all pages.
Page content last updated . Spec covers 2 endpoints from luma.com.
Related APIs in EntertainmentSee all →
lu.ma API
Find upcoming events happening in 77+ cities worldwide through Luma, with access to essential details like event titles, dates, venues, organizers, and registration links. Search across multiple cities to discover events that match your interests and easily register through the provided URLs.
humanitix.com API
Search and discover events on Humanitix, viewing detailed information including dates, times, locations, descriptions, and host names. Filter by keyword, category, price, and date to find events that match your interests.
eventup.com API
Search EventUp for event venues by city, browse featured venues, fetch available venue filter facets for a location, and get autocomplete suggestions for venue and place queries.
allevents.in API
Search and discover events from AllEvents.in by name, date, or category, then view detailed information like descriptions, timings, and venue details. Filter through available event categories to find exactly what you're looking for.
feverup.com API
Discover and search live events, exhibitions, and experiences happening in cities worldwide, filtering by categories to find concerts, shows, expos, and more that match your interests. Get detailed information about any event including schedules, descriptions, and venue details to plan your next outing.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.
axs.com API
Search for events, performers, and venues across AXS.com to find tickets, pricing, and availability information in your area or by category. Browse featured events, explore venues by city, and access detailed event information all in one place.
rausgegangen.de API
Discover events happening in German cities by searching for concerts, festivals, and shows—filtering by location, date, or category to find exactly what you're looking for. Get detailed information about venues, artists, and ticket lotteries all in one place.