Discover/luma.com API
live

luma.com 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.

Endpoints
2
Updated
2mo ago
Try it
Maximum number of events to return (max 50 per page)
Pagination cursor from previous response's next_cursor field
Custom latitude (use with longitude instead of location)
City name. Built-in coordinates supported for major cities including New York, San Francis
Luma discover place API ID (e.g., 'discplace-G0tGUVYwl7T17Sb')
Custom longitude (use 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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c6dfcba3-0e2a-48c5-8e21-f562868d7bf2/search_events?limit=3&location=New+York' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for events by location. Supports city names (with built-in coordinates for popular cities), custom lat/lng, or Luma place IDs. Returns paginated results with cursor-based pagination.

Input
ParamTypeDescription
limitintegerMaximum number of events to return (max 50 per page)
cursorstringPagination cursor from previous response's next_cursor field
latitudestringCustom latitude (use with longitude instead of location)
locationstringCity name. Built-in coordinates supported for major cities including New York, San Francisco, London, Tokyo, and others; or provide a custom city name.
place_idstringLuma discover place API ID (e.g., 'discplace-G0tGUVYwl7T17Sb')
longitudestringCustom longitude (use with latitude instead of location)
Response
{
  "type": "object",
  "fields": {
    "events": "array of event objects with event_api_id, name, description, start_at, end_at, timezone, url, cover_url, location_type, address, city, city_state, country, calendar_name, hosts, guest_count, ticket_price, ticket_currency, is_free",
    "has_more": "boolean indicating if more results are available",
    "next_cursor": "string pagination cursor for the next page",
    "total_returned": "integer count of events in this response"
  },
  "sample": {
    "data": {
      "events": [
        {
          "url": "nhvmcczj",
          "city": "San Francisco",
          "name": "Agent Builders Breakfast - Founders & Builders in SOMA, SF",
          "hosts": [
            {
              "name": "Michael Ducker",
              "avatar_url": "https://images.lumacdn.com/avatars/ia/3cb4863f-518b-431a-91cc-689520986d2d.jpg"
            }
          ],
          "end_at": "2026-05-14T16:30:00.000Z",
          "address": "",
          "country": "United States",
          "is_free": true,
          "start_at": "2026-05-14T15:00:00.000Z",
          "timezone": "America/Los_Angeles",
          "cover_url": "https://images.lumacdn.com/event-covers/6f/d3db823e-c18e-4ba1-a677-4435832050ff.jpg",
          "city_state": "San Francisco, California",
          "description": "",
          "guest_count": 100,
          "event_api_id": "evt-DmSmWL7HBwk4xNd",
          "ticket_price": 0,
          "calendar_name": "Personal",
          "location_type": "offline",
          "ticket_currency": ""
        }
      ],
      "has_more": true,
      "next_cursor": "eyJzdiI6IjIwMjYtMDUtMTQgMTU6MzA6MDArMDAiLCJmYiI6ImV2dC1JRWJNZjN0eUJncHJiczAifQ",
      "total_returned": 1
    },
    "status": "success"
  }
}

About the luma.com 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.

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.

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,000250 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 →
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
novelbin.me API
Search and browse novels by title, genre, or popularity, and explore trending, completed, or recently updated works. Access full novel details, chapter listings, chapter content, author information, related titles, and reader comments. Authenticated users can manage bookmarks with reading-status tracking and subscribe to novels for update notifications.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
glastonburyfestivals.co.uk API
Discover historical and current Glastonbury Festival line-ups, find artist set times and stage locations, and search for specific performers across all festival years. Stay updated with the latest festival news and explore detailed information about festival areas and stages.
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.
Luma Events API – Search & Browse lu.ma Events · Parse