Eventbrite Search Scraper avatar
Eventbrite Search Scraper

Pricing

$5.00 / 1,000 results

Go to Apify Store
Eventbrite Search Scraper

Eventbrite Search Scraper

Scrape Eventbrite search, discovery and details pages

Pricing

$5.00 / 1,000 results

Rating

0.0

(0)

Developer

Hypebridge

Hypebridge

Maintained by Community

Actor stats

1

Bookmarked

65

Total users

15

Monthly active users

2 days ago

Last modified

Categories

Share

Eventbrite Scraper

A powerful Apify Actor that scrapes event information from Eventbrite. Supports both basic search page scraping and detailed event page extraction with comprehensive data including pricing, tickets, images, performers, and more.

Table of Contents


Features

Two Scraping ModesBasic (search results) and Detailed (full event data)
Flexible InputWorks with search/discovery pages AND direct event detail URLs
Comprehensive ExtractionExtracts 50+ fields from Eventbrite event pages
Pagination SupportAutomatically follows pagination on keyword search pages
Series EventsCaptures child events for recurring event series
Pay-Per-EventSupports Apify's pay-per-event monetization model

Input Configuration

ParameterTypeDefaultDescription
startUrlsArrayRequiredEventbrite URLs to scrape (search pages or event detail pages)
scrapeEventDetailsBooleanfalseEnable detailed scraping mode for comprehensive event data
maxEventsNumber0Maximum events to scrape (0 = unlimited)
disableProxyBooleanfalseDisable proxy if encountering CAPTCHA/verification pages

Supported URL Types


Output

Basic Mode

scrapeEventDetails: false — Quick extraction from search result listings
FieldDescription
eventIdUnique event identifier
eventUrlDirect link to event page
eventTitleEvent title
paidStatus"free" or "paid"
locationCity and state
categoryEvent category
urgency_signalUrgency message (e.g., "Sales end soon")
eventImageEvent cover image URL
sourceAlways "eventbrite"

Detailed Mode

scrapeEventDetails: true — Full extraction from event detail pages with 50+ fields

Usage Examples

Scrape search results (basic mode)

{
"startUrls": ["https://www.eventbrite.com/d/tx--houston/events/"],
"scrapeEventDetails": false
}

Scrape search results with full details

{
"startUrls": ["https://www.eventbrite.com/d/tx--houston/events/"],
"scrapeEventDetails": true,
"maxEvents": 50
}

Scrape specific event directly

{
"startUrls": ["https://www.eventbrite.com/e/event-name-tickets-1234567890"],
"scrapeEventDetails": true
}

Scrape multiple sources

{
"startUrls": [
"https://www.eventbrite.com/d/ca--san-francisco/music/",
"https://www.eventbrite.com/e/specific-event-tickets-9876543210"
],
"scrapeEventDetails": true,
"maxEvents": 100
}

Sample Output