Discover/Eventbrite API
live

Eventbrite APIeventbrite.com

Search Eventbrite events by keyword, location, or category. Retrieve ticket pricing, availability, organizer profiles, and batch event data via 5 endpoints.

Endpoint health
verified 6d ago
get_ticket_info
get_organizer_events
search_events
get_event_details
get_events_by_ids
5/5 passing latest checkself-healing
Endpoints
5
Updated
17d ago

What is the Eventbrite API?

The Eventbrite API covers 5 endpoints that expose event listings, ticket pricing, and organizer profiles from Eventbrite.com. Use search_events to query by keyword, location slug, or category ID, and get_event_details to pull structured content, gallery images, sales status, and SEO metadata for any individual event URL. Ticket availability, price ranges in cents, and sold-out status are available through get_ticket_info.

Try it
Page number for pagination (1-based)
Search keyword (e.g. 'music', 'yoga')
Location slug (e.g. 'online', 'united-states', 'new-york--ny', 'san-francisco--ca')
Venue ID to filter events by venue
Category ID to filter events (e.g. '103' for Music, '101' for Business)
api.parse.bot/scraper/b35b309f-0d07-4027-8a94-2309ef38c245/<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/b35b309f-0d07-4027-8a94-2309ef38c245/search_events?page=1&query=music&location=online&category_id=103' \
  -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 eventbrite-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.

"""Eventbrite event discovery: search, enrich, check tickets, explore organizers."""
from parse_apis.Eventbrite_API import Eventbrite, Location, EventNotFound

client = Eventbrite()

# Search for music events online — limit caps total items fetched.
for event in client.events.search(query="music", location=Location.ONLINE, limit=3):
    print(event.title, event.start_date, event.venue_name)

# Drill into the first result's ticket availability.
event = client.events.search(query="yoga", limit=1).first()
if event:
    tickets = event.get_tickets()
    print(tickets.sales_status, tickets.is_free, tickets.is_sold_out)
    if tickets.minimum_ticket_price:
        print(tickets.minimum_ticket_price.value, tickets.minimum_ticket_price.currency)

# Batch-fetch enriched event data by IDs (single request, no N+1).
for enriched in client.events.get_by_ids(event_ids="1989885219257,1990110342607", limit=5):
    print(enriched.title, enriched.url)

# Full event detail via URL — returns EventDetail with structured content.
detail = client.events.get_by_url(event_url="https://www.eventbrite.com/e/pop-music-tickets-1989885219257")
print(detail.name, detail.is_free, detail.currency)

# Organizer lookup — profile plus their upcoming events in one call.
try:
    org = client.organizers.get(id="106718731251")
    print(org.name, org.verified)
    for org_event in org.future_events[:3]:
        print(org_event.name, org_event.start_date, org_event.has_available_tickets)
except EventNotFound as exc:
    print(f"organizer gone: {exc}")

print("exercised: events.search / event.get_tickets / events.get_by_ids / events.get_by_url / organizers.get")
All endpoints · 5 totalmissing one? ·

Full-text search over Eventbrite events filtered by keyword, location, category, or venue. Paginates via integer page counter. Each result includes title, dates, venue, pricing hint, and tags. Online events dominate when location is 'online'; physical locations use city slugs like 'new-york--ny'.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based)
querystringSearch keyword (e.g. 'music', 'yoga')
locationstringLocation slug (e.g. 'online', 'united-states', 'new-york--ny', 'san-francisco--ca')
venue_idstringVenue ID to filter events by venue
category_idstringCategory ID to filter events (e.g. '103' for Music, '101' for Business)
Response
{
  "type": "object",
  "fields": {
    "events": "array of event summary objects with id, title, url, start_date, start_time, end_date, end_time, venue_name, location, price, image_url, organizer, tags",
    "pagination": "object with total_items, page_count, current_page, has_more"
  }
}

About the Eventbrite API

Searching and Browsing Events

search_events accepts a free-text query, a location slug (e.g. 'new-york--ny' or 'online'), a numeric category_id (103 for Music, 101 for Business), and an optional venue_id. Results are paginated via the page parameter and each event summary includes id, title, url, start_date, start_time, end_date, end_time, venue_name, location, price, and a cover image. The pagination object reports total_items, page_count, current_page, and has_more.

Event Details and Ticket Data

get_event_details takes a full Eventbrite event URL and returns a structured event object containing basicInfo, gallery, tags, structuredContent, salesStatus, goodToKnow, and seo fields — covering everything from formatted descriptions to social metadata. get_ticket_info returns isFree, isSoldOut, salesStatus, and an availability object with booleans for hasAvailableTickets, hasBogoTickets, and hasEarlyBirdTickets. Minimum and maximum ticket prices are returned as objects with a value in integer cents and a currency string.

Organizer Profiles and Batch Retrieval

get_organizer_events accepts either a numeric organizer ID or a slug-with-ID string and returns the organizer's name, bio, metrics, socials, and verified status alongside a future_events array. Each future event includes id, name, url, start_date, venue, and ticket_availability. For bulk workflows, get_events_by_ids accepts a comma-separated list of event IDs and returns enriched event objects including image, event_sales_status, ticket_availability, primary_organizer, primary_venue, and tags, with pagination metadata.

Reliability & maintenanceVerified

The Eventbrite API is a managed, monitored endpoint for eventbrite.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when eventbrite.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 eventbrite.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
5/5 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
  • Aggregate local event listings by city using search_events location slugs for a city guide or calendar app.
  • Monitor ticket availability and sold-out status across multiple events with get_ticket_info for resale or alerting tools.
  • Display organizer bios, social links, and upcoming event schedules on a venue or promoter profile page using get_organizer_events.
  • Build a price comparison view by pulling minimumTicketPrice and maximumTicketPrice across events in a given category.
  • Enrich a CRM or event-planning dashboard by batch-fetching full event metadata for a list of IDs via get_events_by_ids.
  • Filter virtual-only events by passing 'online' as the location parameter in search_events for a remote-events directory.
  • Track event launch and sales status changes over time by polling get_event_details for salesStatus and structuredContent updates.
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 Eventbrite have an official developer API?+
Yes. Eventbrite provides an official REST API documented at https://www.eventbrite.com/platform/api. It requires OAuth 2.0 authentication and has its own access tiers and rate limits. This Parse API exposes a curated subset of event, ticket, and organizer data without requiring you to manage Eventbrite OAuth credentials.
What does `get_ticket_info` return beyond a sold-out flag?+
get_ticket_info returns isFree, isSoldOut, salesStatus (e.g. 'on_sale'), and an availability object with three booleans: hasAvailableTickets, hasBogoTickets, and hasEarlyBirdTickets. It also returns minimumTicketPrice and maximumTicketPrice as objects with an integer value in cents and a currency string. Individual ticket tier names and quantities are not broken out.
Can I retrieve attendee lists or order history for an event?+
Not currently. The API covers event metadata, ticket availability, organizer profiles, and search results — attendee-level data such as registrant names, order history, or check-in status is not exposed by any endpoint. You can fork this API on Parse and revise it to add an endpoint targeting that data.
How does pagination work in `search_events`?+
Pass an integer as the page string parameter to move through result pages. The pagination object in every response includes total_items, page_count, current_page, and a has_more boolean so you can walk pages programmatically without a cursor token.
Are past or recurring event series supported?+
The API returns upcoming events in organizer listings (get_organizer_events exposes future_events) and search results reflect the live Eventbrite listing state. Historical event archives and recurring-series parent/child relationships are not modeled as structured fields in the current endpoints. You can fork this API on Parse and revise it to surface past events or series metadata if those fields become relevant to your use case.
Page content last updated . Spec covers 5 endpoints from eventbrite.com.
Related APIs in EntertainmentSee all →
eventbrite.com.au API
Search for events and discover detailed information about upcoming shows, concerts, and gatherings on Eventbrite Australia, while exploring organiser profiles and viewing all events from a specific promoter. Get autocomplete suggestions to quickly find exactly what you're looking for across the platform.
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
shop.ticketera.com API
Search for events on Ticketera, retrieve detailed event information including pricing and ticket categories, and check real-time seat availability for any performance. Ideal for browsing upcoming shows, comparing ticket options, and finding open seats before purchasing.
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.
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.
kktix.com API
Search and discover events on KKTIX by category or filters, view detailed event information including tickets and organizer details, and browse featured events and their availability. Access comprehensive event metadata to find exactly what you're looking for across different categories and organizers.
boletia.com API
Browse and search events on Boletia.com to discover concerts, shows, and performances across different venues and organizers, then view detailed event information and available ticket options. Filter events by category, venue, organizer, or explore trending music events in Mexico City.
viagogo.com API
Search for events and browse tickets across Viagogo's catalog, discovering performer schedules, ticket listings, and categories all in one place. Get detailed information about available tickets and events to find exactly what you're looking for.