docs / eventbrite

Eventbrite API scraper

Eventbrite API scraper

base /eventbrite/v15 endpoints
post/eventbrite/v1/detail1 credit

Full detail for one event by id or url: name, description, start/end datetime, venue with full address and coordinates, organizer, ticket price range (low/high + currency), availability, language, status and image.

ParameterAllowed / rangeDescription
event_idoptionalEventbrite event id (the trailing number in an event URL /e/<name>-tickets-<id>). From a search result's event_id.
urloptionalAlternatively a full Eventbrite event URL.
Try in playground →
post/eventbrite/v1/organizer1 credit

Profile for an event organizer by id or url: name, bio, verification, avatar, follower count, website and social links, and how many upcoming events they have.

ParameterAllowed / rangeDescription
organizer_idoptionalEventbrite organizer id (the number in /o/<name>-<id>). From an event detail's organizer.organizer_id.
urloptionalAlternatively a full Eventbrite organizer URL.
Try in playground →
post/eventbrite/v1/organizer_events1 credit

An organizer's events, paginated (30/page). Choose upcoming (default) or past. Returns each event with name, start/end datetime, venue, category, price range and link.

ParameterAllowed / rangeDescription
organizer_idrequiredEventbrite organizer id to list events for.
type = futureoptionalfuture · past'future' (upcoming, default) or 'past' events.
page = 1optional1–100Event page (30/page). Page until meta.has_more is false.
Try in playground →
post/eventbrite/v1/browse1 credit

Browse Eventbrite's curated event listings for a city and/or category (the discovery shelf). Returns the featured events for that location/category — same event shape as search. This surface is a single curated page (not paginated); use `search` with a query for paginated results.

ParameterAllowed / rangeDescription
locationoptionalWhere to search. Use Eventbrite's location slug '<country>--<city>' (e.g. 'united-states--new-york', 'united-kingdom--london', 'ca--san-francisco'), a US '<state-abbr>--<city>' form, or 'online' for online-only events. Defaults to New York.
categoryoptionalCategory to browse (music, business, food-and-drink, arts, health, sports-and-fitness, community, film-and-media, fashion, hobbies, charity-and-causes, science-and-tech, travel-and-outdoor). Omit for all categories.
Try in playground →