Discover/eventbrite.com.au API
live

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.

Endpoints
5
Updated
14d ago
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.
Use it in your codegrab a free API key at signup
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'
All endpoints · 5 totalclick to expand

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.

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, 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.

Common use cases
  • Aggregate upcoming events in a specific Australian city using search_events with a location slug.
  • 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_events with their organiser ID.
  • Implement a search-as-you-type event finder using get_search_autocomplete to 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 website fields from organiser profiles.
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 Eventbrite have an official developer API?+
Yes. Eventbrite publishes an official REST API documented at https://www.eventbrite.com/platform/api. It requires OAuth2 authentication and has its own rate limits and access tiers. This Parse API covers the Australian site and returns data structured around the same core entities but without requiring an Eventbrite developer account.
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?+
The endpoint currently accepts 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?+
The 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.
Are private or draft events accessible through this API?+
The API returns events that appear on publicly accessible Eventbrite Australia listings. Private, draft, or login-gated events are not covered. You can fork the API on Parse and revise it if your use case involves authenticated access to non-public event data.
Page content last updated . Spec covers 5 endpoints from eventbrite.com.au.
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.