Discover/Lu API
live

Lu APIlu.ma

Access upcoming events from lu.ma across 79+ cities. Get event titles, dates, venues, organizers, timezones, cover images, and registration URLs via two endpoints.

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

What is the Lu API?

The lu.ma API provides access to upcoming events listed on lu.ma across 79+ cities worldwide through two endpoints: get_events and list_cities. Each event object returns up to seven fields including title, date, venue, organizer, timezone, cover image, and a direct registration URL. Use list_cities to enumerate valid city slugs and get_events to pull paginated event listings for any supported city.

Try it
City slug as returned by list_cities endpoint.
Maximum number of events to return.
api.parse.bot/scraper/5977a819-cd3b-4786-b111-4cf922e2e657/<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/5977a819-cd3b-4786-b111-4cf922e2e657/get_events?city=nyc&limit=5' \
  -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 lu-ma-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.

from parse_apis.luma_events_discovery_api import Luma, City, Event

luma = Luma()

# List all available cities
for city in luma.cities.list():
    print(city.name, city.slug, city.continent, city.event_count, city.timezone)

# Construct a city and get its events
nyc = luma.city("nyc")
for event in nyc.events():
    print(event.title, event.date, event.venue, event.organizer, event.registration_url)
All endpoints · 2 totalmissing one? ·

Get upcoming events for a specific city. Returns events with title, date, venue, organizer, timezone, cover image, and registration URL. Paginates internally up to the requested limit. Use list_cities to discover valid city slugs.

Input
ParamTypeDescription
citystringCity slug as returned by list_cities endpoint.
limitintegerMaximum number of events to return.
Response
{
  "type": "object",
  "fields": {
    "city": "string",
    "events": "array of event objects",
    "total_returned": "integer"
  },
  "sample": {
    "data": {
      "city": "nyc",
      "events": [
        {
          "date": "2026-06-10T21:30:00.000Z",
          "title": "Design Job Market",
          "venue": "121 E 27th St, New York",
          "end_date": "2026-06-11T00:30:00.000Z",
          "timezone": "America/New_York",
          "organizer": "Prjctr Global",
          "cover_image": "https://images.lumacdn.com/uploads/gk/a9f9b5cd.png",
          "event_api_id": "evt-qZCg2oqZ9VuWBy0",
          "registration_url": "https://lu.ma/nolesv9t"
        }
      ],
      "total_returned": 5
    },
    "status": "success"
  }
}

About the Lu API

Endpoints

The API exposes two endpoints. list_cities returns the full catalog of supported cities — each entry includes a name, slug, continent, event_count, and timezone. No input parameters are required; the response includes a total count alongside the cities array. This is your starting point for discovering which city slugs are valid inputs for the second endpoint.

get_events accepts an optional city slug (as returned by list_cities) and an optional limit integer to cap the number of results. The response includes a city string, a total_returned integer, and an events array. Each event object contains the event title, date, venue details, organizer name, timezone, cover image URL, and a registration URL pointing back to lu.ma.

Coverage and Pagination

City coverage spans 79+ locations across multiple continents. The continent field on each city object lets you group cities geographically without manual lookup. When fetching events, the endpoint paginates internally up to the number you specify via limit — you receive a flat array rather than managing page cursors yourself.

Data Freshness

The events returned are upcoming events at the time of the request, matching what is currently listed publicly on lu.ma's discover page. Private or invite-only events that are not publicly discoverable on lu.ma are not included in responses.

Reliability & maintenanceVerified

The Lu API is a managed, monitored endpoint for lu.ma — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lu.ma 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 lu.ma 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 city-specific event calendar aggregating lu.ma events by venue and date
  • Track organizer activity across cities using the organizer field returned per event
  • Generate a weekly digest of upcoming events filtered by timezone from list_cities
  • Populate a community app's event feed with cover images and registration URLs
  • Compare event density across cities using the event_count field from list_cities
  • Alert users to new events in their city by diffing get_events results over time
  • Map events geographically by combining city timezone and continent data
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 lu.ma have an official developer API?+
Lu.ma does not publish a general-purpose public developer API for event discovery. The Parse lu.ma API surfaces the same publicly available event data through structured endpoints.
What does get_events return for each event?+
Each event object includes the event title, date, venue, organizer name, timezone, cover image URL, and a registration URL. The response also carries a city string and a total_returned integer at the top level.
Does the API return event attendee counts or RSVP data?+
Not currently. The API returns event metadata such as title, date, venue, organizer, and registration URL. Attendee counts and RSVP totals are not part of the current response shape. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Can I filter events by date range or category?+
The get_events endpoint accepts a city slug and a limit parameter, but does not currently support date range or category filters. It returns upcoming events for the specified city up to the requested limit. You can fork this API on Parse and revise it to add date or category filtering.
Are private or invite-only lu.ma events included?+
No. Only events that are publicly listed on lu.ma's discover page are returned. Private, invite-only, or draft events are not publicly discoverable and therefore do not appear in the API responses.
Page content last updated . Spec covers 2 endpoints from lu.ma.
Related APIs in EntertainmentSee all →
luma.com API
Search and discover public events happening in your area through Luma, complete with details about hosts, attendees, and ticket information. Browse events by location to find exactly what you're looking for and learn more about each event's specifics.
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.
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.
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.
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.
10times.com API
Search and discover events from 10times.com, including conferences, trade shows, and exhibitions worldwide. Access detailed event data such as exhibitor lists, schedules, agendas, and venue information.
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.
tech-week.com API
Browse and filter Tech Week events by city, day, track, location, time, or keyword to find conferences, talks, and networking opportunities. Retrieve structured event data including titles, dates, venues, hosts, RSVP links, and schedule positions.