Eventbrite Events Scraper — Prices, Venue, Organizer, by City
Pricing
from $3.50 / 1,000 events
Eventbrite Events Scraper — Prices, Venue, Organizer, by City
Search Eventbrite by keyword, city and dates and get every event with prices, venue address, organizer, status, dates, category and description — or paste Eventbrite search URLs. Deduplicated, CSV/JSON export and API.
Pricing
from $3.50 / 1,000 events
Rating
0.0
(0)
Developer
Chorelet
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
9 hours ago
Last modified
Categories
Share
Search Eventbrite by keyword, city and dates — or paste search URLs from your browser — and get every event with dates and times, prices, venue address, organizer, status, category, image and description. JSON, CSV, Excel or API.
Why this Actor
- Keyword + city + dates, or any Eventbrite search URL pasted from your browser
- Ticket price range, currency and availability from each event page
- Venue name, address and coordinates when published; organizer with profile link
- Deduplicated across searches
- Checked every day by an automated run
Sample output
One item of the dataset (long values shortened):
{"name": "Computer Programming for Absolute Beginners (in Python)","startDate": "2026-10-11","startTime": "18:30","place": null,"priceMin": 90,"priceMax": 90,"currency": "USD","isFree": false,"venue": {"name": "NYCResistor","address": "87 Third Avenue, Fourth Floor, Brooklyn, NY 11217, Brooklyn, NY, US","city": "Brooklyn","region": "NY","country": "US","postalCode": null,"latitude": null,"longitude": null},"organizer": {"name": "NYC Resistor","url": "https://www.eventbrite.com/o/nyc-resistor-52408308","description": "NYC Resistor is a hacker collective with a shared space located in Boerum Hill, Brooklyn. We meet regularly to share knowledge, hack on p…"},"url": "https://www.eventbrite.com/e/computer-programming-for-absolute-beginners-in-python-tickets-2000671876439"}
What you get
| Field | Description |
|---|---|
id, name, url, summary, description, image | The event |
startDate, startTime, endDate, endTime, timezone, startDateTime, endDateTime | When (ISO with offset from the event page) |
place, isOnline, attendanceMode, venue | Where: venue name, address, city, region, country, coordinates when published |
priceMin, priceMax, currency, isFree, availability, ticketsUrl | Tickets |
organizer | Name, Eventbrite profile URL, description |
status, isCancelled, isSeries, category, subcategory, format, language | Classification |
search | Which search produced the event |
Events are deduplicated across searches. A per-search summary (place, pages, events, errors) is saved as SUMMARY.
Input
- Keywords + Location (
onlineor a place slug as in Eventbrite URLs:ny--new-york,united-kingdom--london,germany--berlin), From / To date. - Search URLs — any
eventbrite.com/d/…page (city, category, "this weekend"…). - Max events per search (20 per page, ~1,000 per search), Fetch event details (one extra request per event for prices, venue, organizer, description).
Limits and notes
- Eventbrite limits any search to about 1,000 results; split by dates or keywords for more.
- Prices are the ticket range published on the event page; some events publish tickets externally (
ticketsUrl). - If Eventbrite answers 403 for many requests, enable the proxy option.
- Public data only; the Actor stores nothing beyond the dataset of your run.
Input example
{"keywords": ["startup"],"location": "ny--new-york","maxEventsPerSearch": 100,"fetchDetails": true}
How much does it cost?
Pay per event — no subscription, no minimum, no charge for platform usage.
| Volume | Price |
|---|---|
| 1,000 events | $5.00 |
| 10,000 events | $50.00 |
| 100,000 events | $500.00 |
The Apify free plan includes $5 of usage every month — about 1,000 events with this Actor, no card needed. Nothing else is charged: platform usage is included in the price.
Use it from code, n8n, Make, Zapier or an AI agent
Run the Actor and download the dataset in one call (JSON by default; add &format=csv or xlsx):
curl -X POST "https://api.apify.com/v2/acts/chorelet~eventbrite-events-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"keywords": ["startup"], "location": "ny--new-york", "maxEventsPerSearch": 100, "fetchDetails": true}'
Python:
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("chorelet/eventbrite-events-scraper").call(run_input={"keywords": ["startup"], "location": "ny--new-york", "maxEventsPerSearch": 100, "fetchDetails": true})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)
- n8n, Make, Zapier — use the Apify node/module: run the Actor, then "get dataset items".
- Google Sheets, Slack, webhooks — add an integration on the run's Integrations tab.
- AI agents — the Actor is available as a tool through the Apify MCP server; the dataset schema describes every field for the model.
- Schedules — run it hourly, daily or weekly from the Schedules tab.
FAQ
How do I choose a city?
Use the place slug from Eventbrite URLs (ny--new-york, united-kingdom--london, germany--berlin) or online — or simply paste the search URL from your browser into searchUrls.
How many events can one search return?
Eventbrite caps a search at about 1,000 results (50 pages of 20). Split by dates or keywords for more.
Are prices included?
Yes, with fetchDetails (on by default): the ticket price range, currency, free flag and availability from each event page.
What if I get 403 errors?
Eventbrite occasionally blocks busy datacenter IPs; enable the proxy option and retry.
What does a run cost?
$5 per 1,000 events. The free plan's $5 a month covers about 1,000 events.
Support
Questions, missing fields or a source that changed? Open an issue on the Issues tab or write to support@chorelet.app — problems are usually fixed within a day, and the Actor is checked every morning by an automated test run. If the Actor saved you time, a short review on its Store page helps other people find it.