# Eventbrite Scraper - Events, Venues & Ticket Prices (`goat255/eventbrite-scraper`) Actor

Search upcoming events by topic and get the date, venue, city, organiser and lowest ticket price for each one. Filter to free events or a date range like this weekend, and walk deep result sets page by page.

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

## Pricing

from $4.50 / 1,000 event scrapeds

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Eventbrite Scraper

Search upcoming events by topic and get the details that matter for planning or research: when it runs, where, who is organising it, and what a ticket costs. No login and no API key.

### What it does

- **Search by topic** - one search per keyword, so add keywords to widen the net.
- **Ticket pricing** - the lowest ticket price with its currency, plus a plain free flag and a sold out flag.
- **Venue and organiser** - venue name, city, region and country, and who is running the event.
- **Online or in person** - a clear flag, so you can filter either way.
- **Date filters** - all upcoming, today, this weekend, next week, and more.
- **Deep pagination** - results are collected 20 at a time up to your cap, across large result sets.

Listings change daily as events are added and sell out, so schedule the run to track a topic or a city over time.

Common uses: event and competitor research, sponsorship and speaking opportunities, venue and pricing benchmarks, and building an events dataset.

### Input

| Field | Type | Description |
|---|---|---|
| `searchQueries` | array | Topics to find events for. One search per entry. |
| `placeId` | string | Optional place identifier to restrict to one city or region. |
| `dateRange` | string | `current_future`, `today`, `tomorrow`, `this_week`, `this_weekend`, `next_week`, `this_month`. |
| `maxResultsPerQuery` | integer | Cap per query. Default 100, up to 5000. |
| `onlyFree` | boolean | Keep only free events. Default false. |
| `proxyConfiguration` | object | Optional. Enable to spread requests across IPs. |

#### Example input

```json
{
  "searchQueries": ["music", "tech"],
  "dateRange": "this_weekend",
  "maxResultsPerQuery": 200,
  "onlyFree": true
}
```

### Output

Each item is one event.

```json
{
  "id": "100000000001",
  "name": "An Example Event",
  "summary": "A short plain text description of the event.",
  "startDate": "2026-08-20",
  "startTime": "18:00",
  "endDate": "2026-08-20",
  "endTime": "21:00",
  "timezone": "Europe/London",
  "isOnline": false,
  "isCancelled": false,
  "venueName": "Example Hall",
  "venueCity": "London",
  "venueRegion": "England",
  "venueCountry": "GB",
  "organizer": "Acme Events",
  "isFree": false,
  "minPrice": 17.85,
  "currency": "GBP",
  "soldOut": false,
  "imageUrl": "https://example.com/event-image.jpg",
  "url": "https://example.com/e/an-example-event"
}
```

Online events have no venue, and free events return a `minPrice` of zero, so the shape is always the same.

### Notes

- No login and no API key. Set your search terms and run.
- Combine `dateRange: "this_weekend"` with `onlyFree` to build a list of free local events.
- Raise `maxResultsPerQuery` to walk deep into large result sets; the run stops automatically when the listings run out.

### Privacy

To improve our actors we collect anonymized usage telemetry (run stats and input patterns). No personal account data is collected.

# Actor input Schema

## `searchQueries` (type: `array`):

Topics to find events for. One search runs per entry.

## `placeId` (type: `string`):

Optional place identifier to restrict results to one city or region. Leave empty to search everywhere.

## `dateRange` (type: `string`):

Which upcoming events to include.

## `maxResultsPerQuery` (type: `integer`):

Cap per search query. Results are collected 20 at a time until this cap is reached or the listings run out.

## `onlyFree` (type: `boolean`):

Skip events that charge for tickets.

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

Optional. Enable to spread requests across IPs on large runs.

## Actor input object example

```json
{
  "searchQueries": [
    "tech",
    "yoga"
  ],
  "dateRange": "current_future",
  "maxResultsPerQuery": 100,
  "onlyFree": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `events` (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 = {
    "searchQueries": [
        "music"
    ],
    "placeId": "",
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("goat255/eventbrite-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 = {
    "searchQueries": ["music"],
    "placeId": "",
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("goat255/eventbrite-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 '{
  "searchQueries": [
    "music"
  ],
  "placeId": "",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call goat255/eventbrite-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,goat255/eventbrite-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/0rzlK3nF7d1Su9Afm/builds/TlywpN0OtsiPAPthQ/openapi.json
