Discover/Eventbrite API
live

Eventbrite APIeventbrite.com.au

Search Eventbrite.com.au events, fetch full event details, organiser profiles, and autocomplete suggestions via 5 structured JSON endpoints.

Endpoint health
verified 3d ago
get_organiser_events
get_organiser_profile
get_event_details
get_search_autocomplete
search_events
5/5 passing latest checkself-healing
Endpoints
5
Updated
18d ago

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.

Try it
Page number for pagination
Search keyword (e.g. 'music', 'comedy', 'workshop')
Location slug in Eventbrite format (e.g. 'australia--sydney', 'australia--melbourne')
api.parse.bot/scraper/31b91b24-59f7-4adc-9a08-e6a4716eec48/<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/31b91b24-59f7-4adc-9a08-e6a4716eec48/search_events?page=1&query=music&location=australia--sydney' \
  -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-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")
All endpoints · 5 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerPage number for pagination
querystringSearch keyword (e.g. 'music', 'comedy', 'workshop')
locationstringLocation slug in Eventbrite format (e.g. 'australia--sydney', 'australia--melbourne')
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
3d 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 upcoming events in a specific Australian city using search_events with a location slug
  • 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_events with 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 tags field returned from get_event_details
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 publishes an official REST API documented at https://www.eventbrite.com/platform/api. It requires OAuth and app approval. This Parse API covers the Australian site (eventbrite.com.au) and does not require you to manage OAuth credentials.
What does `search_events` return and how do I paginate through results?+
Each response includes an 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?+
The 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?+
Yes. The API targets eventbrite.com.au, so results reflect the Australian regional site. The 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.
Can I retrieve attendee lists or sales data for an event?+
No. The API covers publicly visible data: event details, organiser profiles, organiser event listings, and search results. Attendee lists, ticket sales counts, and revenue data are private to event organisers and are not exposed by any current endpoint. You can fork this API on Parse and revise it if you have a specific public data field you want to add.
Page content last updated . Spec covers 5 endpoints from eventbrite.com.au.
Related APIs in EntertainmentSee all →
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.
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.
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.
SeeTickets.com API
Search for events and get detailed information about tickets, venues, and event categories on See Tickets. Browse upcoming events by category, view venue details, and find what you're looking for with search suggestions.
marketplace.ticketek.com.au API
Search and browse resale tickets on Ticketek Marketplace across Australian events by keyword, view available performances and dates, and check detailed ticket listings with current pricing. Find all available ticket types for any city on a specific date to discover live entertainment options.
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.
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.
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.