Eventbrite Event Details
Extract a single Eventbrite event page — full description, organizer, agenda, ticket tiers, and venue details.
API usage
Add &scraper=eventbrite-event-details to a Crawling API request. URL-encode the target URL in the url parameter.
curl 'https://api.crawlbase.com/?token=YOUR_TOKEN' \
--data-urlencode 'url=https://www.eventbrite.com/e/fordham-ai-quantitative-hedge-fund-conference-tickets-1981959936523' \
--data-urlencode 'scraper=eventbrite-event-details' -Gfrom crawlbase import CrawlingAPI
api = CrawlingAPI({'token': 'YOUR_TOKEN'})
res = api.get(
'https://www.eventbrite.com/e/fordham-ai-quantitative-hedge-fund-conference-tickets-1981959936523',
{'scraper': 'eventbrite-event-details'}
)
import json
data = json.loads(res['body'])const { CrawlingAPI } = require('crawlbase');
const api = new CrawlingAPI({ token: 'YOUR_TOKEN' });
const res = await api.get(
'https://www.eventbrite.com/e/fordham-ai-quantitative-hedge-fund-conference-tickets-1981959936523',
{ scraper: 'eventbrite-event-details' }
);
const data = JSON.parse(res.body);require 'crawlbase'
api = Crawlbase::API.new(token: 'YOUR_TOKEN')
res = api.get('https://www.eventbrite.com/e/fordham-ai-quantitative-hedge-fund-conference-tickets-1981959936523', scraper: 'eventbrite-event-details')
data = JSON.parse(res.body)Example input URL
The URL passed in the url parameter (URL-decoded for readability):
https://www.eventbrite.com/e/fordham-ai-quantitative-hedge-fund-conference-tickets-1981959936523Response shape
JSON response body. Field types may be null when the source page omits the value.
Event ID.
Title.
Full description.
ISO start datetime.
ISO end datetime.
Event timezone.
Venue name, address, lat/lng, online flag.
Organizer name, bio, follower count.
Ticket tiers with name, price, availability.
Schedule items.
Event tags.
Event images.
Sample response
{
"event_id": "1981959936523",
"title": "Fordham AI Quantitative Hedge Fund Conference",
"start_datetime": "2026-05-15T09:00:00-04:00",
"timezone": "America/New_York",
"ticket_tiers": [
{ "name": "General Admission", "price": "$25" },
{ "name": "VIP", "price": "$120" }
]
}
