Scrape event data from Eventbrite, the world's largest event platform with millions of events in 180+ countries. Returns title, description, start and end dates with timezone, venue name and full address, GPS coordinates, ticket price, currency, free/paid flag, organizer, category and image URL. Search by URL or query plus location.
# Scrape Eventbrite events by search URL or query + location curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~eventbrite-scraper/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "searchQuery": "tech", "location": "germany--berlin", "maxResults": 100 }' # Or paste search URLs directly: # {"searchUrls":["https://www.eventbrite.com/d/germany/tech/"],"maxResults":100} # Or use with AI agents via MCP: # https://mcp.apify.com?tools=santamaria-automations/eventbrite-scraper
{
"id": "1982303023706",
"title": "Women in Tech Connect Berlin 2026",
"description": "This event is part of the Women in Tech Global Conference...",
"start_date": "2026-09-14T18:00:00+02:00",
"end_date": "2026-09-14T21:00:00+02:00",
"timezone": "Europe/Berlin",
"venue_name": "Spielfeld Digital Hub",
"address": "Skalitzer Strasse 85-86, 10997 Berlin, Germany",
"city": "Berlin",
"country": "Germany",
"lat": 52.5023,
"lng": 13.4292,
"price": 0,
"currency": "EUR",
"is_free": true,
"organizer": "Women in Tech Global",
"category": "Business",
"image_url": "https://img.evbuc.com/..."
}