eventbrite.com.au APIeventbrite.com.au ↗
Search Eventbrite Australia events, fetch full event details, organiser profiles, and autocomplete suggestions via a structured JSON API with 5 endpoints.
curl -X GET 'https://api.parse.bot/scraper/31b91b24-59f7-4adc-9a08-e6a4716eec48/search_events?query=music&location=australia--sydney' \ -H 'X-API-Key: $PARSE_API_KEY'
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.
| 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, primary_venue, primary_organizer, ticket_availability, image, tags, summary",
"pagination": "object with page number, object_count, page_count, has_more_items"
},
"sample": {
"data": {
"events": [
{
"id": "1987182921612",
"url": "https://www.eventbrite.com.au/e/befikree-sydneys-craziest-bollywood-club-night-tickets-1987182921612",
"name": "BEFIKREE - Sydney's Craziest Bollywood Club Night",
"summary": "Get ready for a packed dancefloor, high-energy music, and a night you won't forget.",
"start_date": "2026-05-02",
"start_time": "21:00",
"primary_venue": {
"name": "The Civic Hotel",
"address": {
"city": "Sydney",
"region": "NSW",
"localized_address_display": "388 Pitt Street, Sydney, NSW 2000"
}
},
"primary_organizer": {
"id": "88045765103",
"name": "Culture Eventz"
},
"ticket_availability": {
"is_free": false,
"is_sold_out": false,
"maximum_ticket_price": {
"display": "450.00 AUD"
},
"minimum_ticket_price": {
"display": "26.72 AUD"
}
}
}
],
"pagination": {
"page": 1,
"page_count": 1,
"object_count": 23,
"has_more_items": false
}
},
"status": "success"
}
}About the eventbrite.com.au API
This API provides access to Eventbrite Australia event data across 5 endpoints, covering event search, full event details, organiser profiles, organiser event listings, and search autocomplete. The search_events endpoint returns paginated results with venue, ticket availability, and image data for events across Australian cities, while get_event_details exposes per-event fields including start time, sales status, and organiser follower count.
Event Search and Details
The search_events endpoint accepts a query string (e.g. 'comedy', 'workshop') and a location slug in Eventbrite's regional format (e.g. 'australia--sydney', 'australia--melbourne'). Results are paginated via the page parameter, and each event object in the response includes id, name, url, start_date, start_time, primary_venue, primary_organizer, ticket_availability, and image. The pagination object exposes page_count, object_count, and has_more_items for cursor management.
The get_event_details endpoint takes a numeric event_id string (obtainable from search_events results) and returns a richer set of fields: summary, ticket pricing and availability details under ticket_availability, tags, and primary_organizer including the organiser's id, url, and follower count. This makes it straightforward to chain from a search result into full event data.
Organiser Data
Organiser IDs surfaced in event responses can be passed to get_organiser_profile to retrieve the organiser's name, website, description (in both plain text and HTML), long_description, and follow_status.num_followers. The get_organiser_events endpoint accepts the same organiser_id and returns a paginated list of that organiser's events using the same event object shape as search_events, including pagination metadata.
Autocomplete
The get_search_autocomplete endpoint accepts a partial query string and returns two arrays: event for matching event suggestions and query for suggested search query strings. This is suited for building search-as-you-type interfaces where results should update as a user types partial keywords.
- Aggregate upcoming events in a specific Australian city using
search_eventswith alocationslug. - Build an event discovery app that pulls full venue address and ticket pricing from
get_event_details. - Display an organiser's follower count and description on a promoter profile page using
get_organiser_profile. - List all events by a specific promoter or venue operator using
get_organiser_eventswith their organiser ID. - Implement a search-as-you-type event finder using
get_search_autocompleteto suggest queries in real time. - Monitor ticket availability and sales status for a set of event IDs by polling
get_event_details. - Cross-reference organiser websites and social presence by extracting
websitefields from organiser profiles.
| 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 | 250 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 `get_event_details` return beyond what `search_events` provides?+
get_event_details adds a summary field, tags, and a more detailed ticket_availability object that includes pricing tiers and sales status. The primary_organizer object also includes the organiser's profile URL, which can be used to chain into get_organiser_profile.Does `search_events` support filtering by date range or event category?+
query, location, and page parameters. Date range and category filters are not exposed. You can fork the API on Parse and revise it to add those filtering parameters if your use case requires them.Does `get_organiser_events` paginate, and how do I retrieve subsequent pages?+
get_organiser_events response includes a pagination object with object_count, page_count, and has_more_items. However, the endpoint does not currently accept a page parameter for navigating beyond the first page. You can fork the API on Parse and revise it to add pagination input support.