Docs
Log in

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' -G
from 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-1981959936523

Response shape

JSON response body. Field types may be null when the source page omits the value.

event_id
string
Event ID.
title
string
Title.
description
string
Full description.
start_datetime
string
ISO start datetime.
end_datetime
string
ISO end datetime.
timezone
string
Event timezone.
venue
object
Venue name, address, lat/lng, online flag.
organizer
object
Organizer name, bio, follower count.
ticket_tiers
array
Ticket tiers with name, price, availability.
agenda
array
Schedule items.
tags
array
Event tags.
images
array
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" }
  ]
}