Docs
Log in

API usage

Add &scraper=eventbrite-events-list 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/d/ny--new-york/ai/' \
  --data-urlencode 'scraper=eventbrite-events-list' -G
from crawlbase import CrawlingAPI

api = CrawlingAPI({'token': 'YOUR_TOKEN'})
res = api.get(
    'https://www.eventbrite.com/d/ny--new-york/ai/',
    {'scraper': 'eventbrite-events-list'}
)

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/d/ny--new-york/ai/',
  { scraper: 'eventbrite-events-list' }
);
const data = JSON.parse(res.body);
require 'crawlbase'
api = Crawlbase::API.new(token: 'YOUR_TOKEN')

res = api.get('https://www.eventbrite.com/d/ny--new-york/ai/', scraper: 'eventbrite-events-list')
data = JSON.parse(res.body)

Example input URL

The URL passed in the url parameter (URL-decoded for readability):

https://www.eventbrite.com/d/ny--new-york/ai/

Response shape

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

search_query
string
Search query / category.
location
string | null
Location filter.
total_events
integer | null
Total events.
events
array
Event summary objects.
events[].event_id
string
Event ID.
events[].title
string
Title.
events[].url
string
URL.
events[].date
string
Start date.
events[].time
string
Start time.
events[].venue
string
Venue or "Online".
events[].price_from
string
Min price (or "Free").
events[].image_url
string
Image.

Sample response

{
  "search_query": "ai",
  "location": "New York",
  "events": [
    {
      "event_id": "1981959936523",
      "title": "Fordham AI Quantitative Hedge Fund Conference",
      "date": "2026-05-15",
      "time": "9: 00 AM",
      "venue": "Fordham University",
      "price_from": "$25"
    }
  ]
}