# Ticketmaster Events, Venues & Attractions Scraper (`axlymxp/ticketmaster-events-scraper`) Actor

Scrape Ticketmaster events, venues, attractions & classifications — dates, prices, venue, GPS, lineup and images. Official-API backend, reliable, no anti-bot breakage.

- **URL**: https://apify.com/axlymxp/ticketmaster-events-scraper.md
- **Developed by:** [axly](https://apify.com/axlymxp) (community)
- **Categories:** Travel, E-commerce, Integrations
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $7.00 / 1,000 dataset items

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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

## Ticketmaster Events, Venues & Attractions Scraper

Extract structured event data from **Ticketmaster** at scale — event dates,
prices, venues, GPS coordinates, full lineups, genres and images — as clean JSON
ready for Sheets, a database, or your app. Built on the **official Discovery API
backend** that the Ticketmaster mobile app uses, so it is reliable and does not
break on CAPTCHAs or bot-detection like HTML scrapers do.

### Who it's for

- **Event & price analysts** — track on-sale dates, price ranges and availability across markets.
- **Media, apps & aggregators** — power event listings, calendars and "what's on" pages with fresh data.
- **Marketers & agencies** — build target lists by artist, genre, city or venue.
- **Researchers & data teams** — analyze the live-entertainment market by segment, genre and geography.

### What you can scrape

Choose a `resultType`:

| Result type | What you get |
| --- | --- |
| **Events** (default) | Concerts, sports, theater & family events with dates, prices, venue, lineup, images |
| **Attractions** | Artists, teams and performers with upcoming-event counts and social links |
| **Venues** | Venues with address, GPS, box-office info and parking details |
| **Classifications** | The Ticketmaster genre taxonomy (segments → genres) |

### Output fields (events)

| Field | Type | Description |
| --- | --- | --- |
| `id` | string | Ticketmaster event ID |
| `name` | string | Event name |
| `url` | string | Canonical event page URL |
| `local_date` / `local_time` | string | Local start date and time |
| `datetime_utc` | string | UTC start instant (ISO 8601) |
| `status` | string | `onsale`, `offsale`, `cancelled`, … |
| `price_min` / `price_max` / `currency` | number/string | Face-value price range |
| `segment` / `genre` / `sub_genre` | string | Classification |
| `venue` | object | Venue name, city, state, country, address, postal code, lat/long |
| `venue_name` / `city` | string | Convenience flat fields |
| `attractions` | array | Lineup (artist/team names) |
| `attraction_ids` | array | Attraction IDs for enrichment |
| `promoter` | string | Promoter name |
| `sale_start` / `sale_end` | string | Public on-sale window |
| `info` / `please_note` / `ticket_limit` | string | Event notes and ticket limits |
| `seatmap_url` | string | Static seat-map image |
| `image_url` | string | Best event image |
| `scraped_at` | string | Extraction timestamp (UTC) |

Attractions, venues and classifications each return their own documented fields.

### Use cases

- **Price & on-sale monitoring** — schedule daily runs for an artist or venue and watch price ranges and sale windows change.
- **Event feed for an app** — pull all events in a city or geo-radius to populate a listings product.
- **Artist tour tracking** — search an attraction and get every upcoming date and venue.
- **Market research** — scrape by genre/segment across cities to size a market.

### Input parameters

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| `resultType` | enum | `events` | events / attractions / venues / classifications |
| `keywords` | array | — | Search terms (artist, event, team, venue) |
| `market` | enum | `US` | Ticketmaster market host |
| `countryCode` | string | — | ISO country filter (US, GB, …) |
| `city` / `stateCode` / `postalCode` | string | — | Location filters |
| `classificationName` | string | — | Genre/segment (Music, Sports, …) |
| `startDateTime` / `endDateTime` | string | — | ISO 8601 date window |
| `latlong` + `radius` + `unit` | string/int | — | Geo-radius search |
| `sort` | enum | `date,asc` | Result ordering |
| `maxItems` | int | 100 | Max results per keyword (≤ 1000) |

### Example input

```json
{
  "resultType": "events",
  "keywords": ["Taylor Swift"],
  "countryCode": "US",
  "sort": "date,asc",
  "maxItems": 50
}
````

### Example output (one row)

```json
{
  "id": "vvG1VZ...",
  "name": "Taylor Swift | The Eras Tour",
  "url": "https://www.ticketmaster.com/event/...",
  "local_date": "2026-08-16",
  "local_time": "19:00:00",
  "datetime_utc": "2026-08-17T01:00:00Z",
  "status": "onsale",
  "price_min": 49.5,
  "price_max": 449.5,
  "currency": "USD",
  "segment": "Music",
  "genre": "Pop",
  "venue_name": "MetLife Stadium",
  "city": "East Rutherford",
  "attractions": ["Taylor Swift"],
  "image_url": "https://s1.ticketm.net/dam/a/...",
  "scraped_at": "2026-07-21T00:00:00+00:00"
}
```

### Scheduling & integrations

Run on a **schedule** for continuous monitoring, and connect the dataset to
**Google Sheets, Make, Zapier, or S3** via Apify integrations and **webhooks**.
Every run's output is available through the Apify API and dataset exports (JSON,
CSV, Excel).

### MCP / AI assistants

Prefer a live, conversational interface? Use the companion **Ticketmaster MCP
Server** actor to let Claude, Cursor, ChatGPT and other AI agents search events,
attractions and venues on demand.

### FAQ

**Where does the data come from?** Ticketmaster's official Discovery API backend
(the same one the mobile app uses) — not fragile HTML scraping — so results are
consistent and structured.

**How fresh is it?** Live at run time. Schedule the actor to keep a dataset current.

**Is there a result limit?** The underlying API caps deep paging at 1000 results
per query; narrow with filters (city, date, classification) to cover more.

**Which countries are supported?** US/Canada, Mexico, Australia, New Zealand, UK
and Ireland via the `market` setting, plus any `countryCode` filter.

**Is it reliable?** Yes — because it uses the official API backend, there are no
CAPTCHAs or bot-detection failures typical of website scrapers.

# Actor input Schema

## `resultType` (type: `string`):

Which Ticketmaster entity to return: events (default), attractions (artists/teams/performers), venues, or classifications (the genre taxonomy).

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

One or more search terms (artist, event, team, or venue name). Each keyword is scraped in turn. Leave empty to browse by location/classification filters only.

## `market` (type: `string`):

Ticketmaster market host to query.

## `countryCode` (type: `string`):

ISO country filter, e.g. US, GB, CA, AU, DE.

## `city` (type: `string`):

Filter events/venues by city name.

## `stateCode` (type: `string`):

e.g. NY, CA, TX.

## `postalCode` (type: `string`):

Filter events/venues by postal or ZIP code.

## `classificationName` (type: `string`):

Segment or genre name, e.g. Music, Sports, Arts & Theatre, Rock, Comedy.

## `startDateTime` (type: `string`):

Only events on/after this instant, e.g. 2026-08-01T00:00:00Z.

## `endDateTime` (type: `string`):

Only events on/before this instant, e.g. 2026-12-31T23:59:59Z.

## `latlong` (type: `string`):

Search around a coordinate, e.g. 40.7128,-74.0060. Combine with radius.

## `radius` (type: `integer`):

Search radius around the geo point / city (used with the unit below).

## `unit` (type: `string`):

Unit for the search radius.

## `sort` (type: `string`):

Result ordering. Events default to date,asc.

## `maxItems` (type: `integer`):

Stop after this many results per keyword (Discovery API caps deep paging at 1000 total).

## Actor input object example

```json
{
  "resultType": "events",
  "keywords": [
    "Taylor Swift"
  ],
  "market": "US",
  "unit": "miles",
  "sort": "date,asc",
  "maxItems": 100
}
```

# 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": [
        "Taylor Swift"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("axlymxp/ticketmaster-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": ["Taylor Swift"] }

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

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).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": [
    "Taylor Swift"
  ]
}' |
apify call axlymxp/ticketmaster-events-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=axlymxp/ticketmaster-events-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Ticketmaster Events, Venues & Attractions Scraper",
        "description": "Scrape Ticketmaster events, venues, attractions & classifications — dates, prices, venue, GPS, lineup and images. Official-API backend, reliable, no anti-bot breakage.",
        "version": "1.0",
        "x-build-id": "bCzMGksACeV0PuWMi"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/axlymxp~ticketmaster-events-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-axlymxp-ticketmaster-events-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/axlymxp~ticketmaster-events-scraper/runs": {
            "post": {
                "operationId": "runs-sync-axlymxp-ticketmaster-events-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/axlymxp~ticketmaster-events-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-axlymxp-ticketmaster-events-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "resultType": {
                        "title": "What to scrape",
                        "enum": [
                            "events",
                            "attractions",
                            "venues",
                            "classifications"
                        ],
                        "type": "string",
                        "description": "Which Ticketmaster entity to return: events (default), attractions (artists/teams/performers), venues, or classifications (the genre taxonomy).",
                        "default": "events"
                    },
                    "keywords": {
                        "title": "Search keywords",
                        "type": "array",
                        "description": "One or more search terms (artist, event, team, or venue name). Each keyword is scraped in turn. Leave empty to browse by location/classification filters only.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "market": {
                        "title": "Market",
                        "enum": [
                            "US",
                            "CA",
                            "MX",
                            "AU",
                            "NZ",
                            "UK",
                            "IE"
                        ],
                        "type": "string",
                        "description": "Ticketmaster market host to query.",
                        "default": "US"
                    },
                    "countryCode": {
                        "title": "Country code",
                        "type": "string",
                        "description": "ISO country filter, e.g. US, GB, CA, AU, DE."
                    },
                    "city": {
                        "title": "City",
                        "type": "string",
                        "description": "Filter events/venues by city name."
                    },
                    "stateCode": {
                        "title": "State / province code",
                        "type": "string",
                        "description": "e.g. NY, CA, TX."
                    },
                    "postalCode": {
                        "title": "Postal / ZIP code",
                        "type": "string",
                        "description": "Filter events/venues by postal or ZIP code."
                    },
                    "classificationName": {
                        "title": "Classification",
                        "type": "string",
                        "description": "Segment or genre name, e.g. Music, Sports, Arts & Theatre, Rock, Comedy."
                    },
                    "startDateTime": {
                        "title": "Start date/time (ISO 8601)",
                        "type": "string",
                        "description": "Only events on/after this instant, e.g. 2026-08-01T00:00:00Z."
                    },
                    "endDateTime": {
                        "title": "End date/time (ISO 8601)",
                        "type": "string",
                        "description": "Only events on/before this instant, e.g. 2026-12-31T23:59:59Z."
                    },
                    "latlong": {
                        "title": "Geo point (lat,long)",
                        "type": "string",
                        "description": "Search around a coordinate, e.g. 40.7128,-74.0060. Combine with radius."
                    },
                    "radius": {
                        "title": "Radius",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Search radius around the geo point / city (used with the unit below)."
                    },
                    "unit": {
                        "title": "Radius unit",
                        "enum": [
                            "miles",
                            "km"
                        ],
                        "type": "string",
                        "description": "Unit for the search radius.",
                        "default": "miles"
                    },
                    "sort": {
                        "title": "Sort order",
                        "enum": [
                            "date,asc",
                            "date,desc",
                            "relevance,desc",
                            "name,asc",
                            "distance,asc"
                        ],
                        "type": "string",
                        "description": "Result ordering. Events default to date,asc.",
                        "default": "date,asc"
                    },
                    "maxItems": {
                        "title": "Max results per keyword",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Stop after this many results per keyword (Discovery API caps deep paging at 1000 total).",
                        "default": 100
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
