# Eventbrite Events Scraper — Prices, Venue, Organizer, by City (`chorelet/eventbrite-events-scraper`) Actor

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.

- **URL**: https://apify.com/chorelet/eventbrite-events-scraper.md
- **Developed by:** [Chorelet](https://apify.com/chorelet) (community)
- **Categories:** Lead generation, Automation, Travel
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.50 / 1,000 events

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Eventbrite Events Scraper — Prices, Venue, Organizer, by City

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):

```json
{
  "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** (`online` or 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

```json
{
  "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`):

```bash
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:

```python
from apify_client import ApifyClient

client = 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.

# Actor input Schema

## `keywords` (type: `array`):

What to search for, one per line (`python`, `startup`, `yoga`). Empty = all events at the location.

## `location` (type: `string`):

`online`, or a place as it appears in Eventbrite URLs: `ny--new-york`, `ca--san-francisco`, `united-kingdom--london`, `germany--berlin`, `australia--sydney`, `india--bangalore`. Open eventbrite.com, pick a city and copy the part after /d/.

## `searchUrls` (type: `array`):

Alternatively paste Eventbrite search, category or location URLs from your browser (anything under eventbrite.com/d/…), e.g. `https://www.eventbrite.com/d/online/all-events--this-month/?q=ai`.

## `startDate` (type: `string`):

`YYYY-MM-DD`. Leave empty for upcoming events.

## `endDate` (type: `string`):

`YYYY-MM-DD`.

## `maxEventsPerSearch` (type: `integer`):

Eventbrite shows 20 events per page; up to ~1,000 per search.

## `fetchDetails` (type: `boolean`):

Open every event page for prices, venue address, organizer, status and description. One extra request per event.

## `proxyConfiguration` (type: `object`):

Off by default. Enable Apify proxies if Eventbrite starts answering 403.

## Actor input object example

```json
{
  "keywords": [
    "startup"
  ],
  "location": "ny--new-york",
  "maxEventsPerSearch": 100,
  "fetchDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `events` (type: `string`):

All events — items of the default dataset. Use ?format=csv or xlsx on this URL for spreadsheets.

## `summary` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keywords": [
        "startup"
    ],
    "location": "ny--new-york",
    "maxEventsPerSearch": 100,
    "fetchDetails": true,
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("chorelet/eventbrite-events-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "keywords": ["startup"],
    "location": "ny--new-york",
    "maxEventsPerSearch": 100,
    "fetchDetails": True,
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("chorelet/eventbrite-events-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keywords": [
    "startup"
  ],
  "location": "ny--new-york",
  "maxEventsPerSearch": 100,
  "fetchDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call chorelet/eventbrite-events-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,chorelet/eventbrite-events-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/arwmGyqE1RRndhke3/builds/gmxvEHwWpGmFWTd6F/openapi.json
