Scraper les données d'événements depuis Eventbrite, la plus grande plateforme mondiale avec des millions d'événements dans 180+ pays. Renvoie titre, description, dates de début et fin avec fuseau, nom du lieu et adresse complète, coordonnées GPS, prix du billet, devise, gratuit/payant, organisateur, catégorie et URL image. Recherche par URL ou requête + localisation.
# 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/..."
}