Eventbrite Events — Search by Query and Location avatar

Eventbrite Events — Search by Query and Location

Pricing

$0.30 / 1,000 eventbrite event extracteds

Go to Apify Store
Eventbrite Events — Search by Query and Location

Eventbrite Events — Search by Query and Location

Search Eventbrite public listings by query + city. One row per event with title, organizer, start datetime, venue, location, isOnline, ticket price range, attendee estimate, URL.

Pricing

$0.30 / 1,000 eventbrite event extracteds

Rating

0.0

(0)

Developer

vøiddo

vøiddo

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

11 days ago

Last modified

Categories

Share

Search Eventbrite public listings by query and location. One row per event with title, organizer, start datetime, venue, location, isOnline flag, ticket price range, and URL.

How to use

Provide one or more search queries (kebab-case, matching Eventbrite's URL format) and an optional location slug.

Input shape

{
"queries": ["tech-conference", "ai-workshop", "startup-pitch"],
"location": "united-states",
"maxEventsPerQuery": 50
}
FieldTypeDefaultDescription
queriesarray of strings["tech-conference","ai-workshop","startup-pitch"]Search terms in kebab-case
locationstring"united-states"Eventbrite location slug (e.g. "new-york", "london-gb")
maxEventsPerQueryinteger50Maximum events returned per query (cap per query, not total)

Queries map to the Eventbrite search URL pattern https://www.eventbrite.com/d/{location}/{query}/. Up to 3 pages of results are fetched per query.

Example output row

{
"id": "987654321",
"title": "AI & Machine Learning Summit 2025",
"organizer": "TechEvents Inc.",
"startDate": "2025-09-12T09:00:00",
"endDate": "2025-09-12T18:00:00",
"isOnline": false,
"venueName": "San Francisco Convention Center",
"city": "San Francisco",
"priceMin": 49.0,
"priceMax": 299.0,
"url": "https://www.eventbrite.com/e/ai-machine-learning-summit-2025-tickets-987654321"
}

Pricing

EventDescriptionPrice
event_extractedEventbrite event extracted$0.0003 per event

You are charged only for rows actually delivered to the dataset. A query that returns zero results costs nothing.

Buyer

  • Event marketers mapping competitor and co-marketing opportunities by scanning upcoming conferences and workshops in their niche.
  • Sales teams identifying sponsorship targets — find who is organizing events in a given category and city.
  • Market researchers tracking event frequency and pricing trends across topics like AI, blockchain, or leadership.
  • Event organizers benchmarking their own pricing and timing against similar events in the same location.
  • Job boards / recruiters surfacing tech meetups and hackathons to promote open roles or sourcing candidates.

Source

Data is scraped from Eventbrite's public search pages at:

https://www.eventbrite.com/d/{location}/{query}/

The actor reads the window.__SERVER_DATA__ JSON blob embedded in the HTML by Eventbrite's server-side renderer. When that blob is absent, it falls back to <script type="application/ld+json"> Schema.org Event nodes emitted for SEO. No private API or authentication is used. Only publicly visible event listings are returned.