Eventbrite APIeventbrite.com.au ↗
Search Eventbrite.com.au events, fetch full event details, organiser profiles, and autocomplete suggestions via 5 structured JSON endpoints.
What is the Eventbrite API?
This API covers 5 endpoints that return event listings, detailed event records, and organiser data from Eventbrite Australia. Use search_events to query events by keyword and location with paginated results, or get_event_details to pull a full record including venue address, ticket availability, pricing status, and tags for any event ID found in search results.
curl -X GET 'https://api.parse.bot/scraper/31b91b24-59f7-4adc-9a08-e6a4716eec48/search_events?page=1&query=music&location=australia--sydney' \ -H 'X-API-Key: $PARSE_API_KEY'
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-au-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.
"""Walkthrough: Eventbrite Australia SDK — search events, drill into details, explore organisers."""
from parse_apis.Eventbrite_Australia_API import Eventbrite, Location, EventNotFound
client = Eventbrite()
# Search for music events in Sydney — limit caps total items fetched
for event in client.events.search(query="music", location=Location.AUSTRALIA__SYDNEY, limit=5):
print(event.name, event.start_date, event.start_time)
print(event.primary_venue.name, event.primary_venue.address.city)
print(event.ticket_availability.is_free, event.ticket_availability.is_sold_out)
# Drill into a single event for full details
event = client.events.search(query="comedy", limit=1).first()
if event:
full = event.refresh()
print(full.name, full.summary, full.url)
# Navigate to the organizer's profile
organizer = client.organizer(full.primary_organizer.id).refresh()
print(organizer.name, organizer.follow_status.num_followers)
print(organizer.description.text)
# List organizer's other events
for org_event in organizer.events(limit=3):
print(org_event.name, org_event.start_date)
# Autocomplete suggestions
suggestions = client.suggestions.complete(query="jazz")
print(suggestions.queries)
# Typed error handling for a non-existent event
try:
bad = client.organizer("0000000000").refresh()
except EventNotFound as exc:
print(f"Not found: {exc}")
print("exercised: events.search / event.refresh / organizer.refresh / organizer.events / suggestions.complete")
Search for events by keyword and/or location on Eventbrite Australia. Returns a paginated list of events with rich details including venue, organizer, ticket availability, and images. Results are ordered by relevance. When no query is provided, returns all upcoming events in the location.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination |
| query | string | Search keyword (e.g. 'music', 'comedy', 'workshop') |
| location | string | Location slug in Eventbrite format (e.g. 'australia--sydney', 'australia--melbourne') |
{
"type": "object",
"fields": {
"events": "array of event objects with id, name, url, start_date, start_time, end_date, end_time, primary_venue, primary_organizer, ticket_availability, image, tags, summary",
"pagination": "object with page, object_count, page_count, has_more_items, page_size"
},
"sample": {
"data": {
"events": [
{
"id": "1984616037994",
"url": "https://www.eventbrite.com.au/e/viva-italia-live-at-the-polish-club-tickets-1984616037994",
"name": "Viva Italia! Live at the Polish Club",
"tags": [
{
"display_name": "Rock"
},
{
"display_name": "Music"
}
],
"summary": "An evening of musical delight featuring award winning artists",
"end_date": "2026-08-08",
"end_time": "22:00",
"start_date": "2026-08-08",
"start_time": "20:00",
"primary_venue": {
"id": "296742694",
"name": "Polish Club Ashfield",
"address": {
"city": "Ashfield",
"region": "NSW",
"postal_code": "2131"
}
},
"primary_organizer": {
"id": "79955970183",
"name": "Polish Club Events",
"num_followers": 684
},
"ticket_availability": {
"is_free": false,
"is_sold_out": false,
"maximum_ticket_price": {
"display": "47.84 AUD"
},
"minimum_ticket_price": {
"display": "0.00 AUD"
}
}
}
],
"pagination": {
"page": 1,
"page_size": 23,
"page_count": 1,
"object_count": 23,
"has_more_items": false
}
},
"status": "success"
}
}About the Eventbrite API
Search and Discovery
The search_events endpoint accepts a query string (e.g. 'workshop', 'jazz') and a location slug in Eventbrite's regional format (e.g. 'australia--sydney', 'australia--melbourne'). Responses include a paginated events array — each item carries id, name, url, start_date, start_time, end_date, end_time, primary_venue, primary_organizer, and ticket availability. The pagination object exposes page, object_count, page_count, has_more_items, and page_size, so you can walk through large result sets with the page parameter. When query is omitted, the endpoint returns all upcoming Australian events in relevance order.
Event and Organiser Detail
get_event_details takes a numeric event_id string and returns the full event record: summary, tags (as display-name objects), full primary_venue with address, start and end date/time, and the event page url. Organiser IDs surfaced in event results feed directly into get_organiser_profile, which returns the organiser's name, website, plain-text and HTML description and long_description, and a follow_status object containing num_followers. get_organiser_events accepts the same organiser ID and returns all events that organiser has listed, with the same rich per-event fields available in search results.
Autocomplete
The get_search_autocomplete endpoint takes a partial query string and returns two arrays: query (suggested search strings) and event (matching event objects). This is suited for building search-as-you-type UIs without committing a full search_events call on every keystroke.
The Eventbrite API is a managed, monitored endpoint for eventbrite.com.au — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when eventbrite.com.au 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.au 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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Aggregate upcoming events in a specific Australian city using
search_eventswith alocationslug - Build an event calendar app that syncs start/end dates, venue addresses, and ticket availability from
get_event_details - Monitor a promoter's full upcoming schedule by polling
get_organiser_eventswith their organiser ID - Display organiser credibility signals (follower count, description) on a third-party ticketing directory via
get_organiser_profile - Implement real-time search suggestions in a local events app using
get_search_autocomplete - Filter and index Eventbrite events by category using the
tagsfield returned fromget_event_details
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 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.
Does Eventbrite have an official developer API?+
What does `search_events` return and how do I paginate through results?+
events array and a pagination object. The pagination object contains page, object_count, page_count, has_more_items, and page_size. Pass an incremented page integer on each subsequent call to retrieve the next batch. Sorting order is fixed to relevance — there is no parameter to change it.Does the API return event ticket prices?+
events array items include a ticket_availability field that indicates whether tickets are available, but detailed per-tier pricing breakdowns are not currently exposed. The API covers availability status, start/end dates, venue, and organiser data. You can fork this API on Parse and revise it to add an endpoint that returns full ticket tier pricing.Is the data limited to Australian events?+
location parameter in search_events accepts Australian city slugs like 'australia--sydney' or 'australia--melbourne'. Events listed on Eventbrite's global or other regional domains are not currently covered. You can fork this API on Parse and revise it to point at a different Eventbrite regional domain.