# Ticketmaster Scraper - Events, Artists & Venues

**Use case:** 

Scrape Ticketmaster events, artists and venues across the US, UK, AU and CA with city/date filters, monitoring and resume support.

## Input

```json
{
  "mode": "search",
  "query": "concerts",
  "market": "us",
  "urls": [
    "https://www.ticketmaster.com/search?q=concerts"
  ],
  "maxItems": 20,
  "maxPages": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false
}
```

## Output

```json
{
  "kind": {
    "label": "Kind"
  },
  "recordId": {
    "label": "Record id"
  },
  "eventId": {
    "label": "Event id"
  },
  "discoveryId": {
    "label": "Discovery id"
  },
  "market": {
    "label": "Market"
  },
  "url": {
    "label": "Url"
  },
  "title": {
    "label": "Title"
  },
  "startDate": {
    "label": "Start date"
  },
  "onsaleDate": {
    "label": "Onsale date"
  },
  "spanMultipleDays": {
    "label": "Span multiple days"
  },
  "timeZone": {
    "label": "Time zone"
  },
  "cancelled": {
    "label": "Cancelled"
  },
  "postponed": {
    "label": "Postponed"
  },
  "rescheduled": {
    "label": "Rescheduled"
  },
  "soldOut": {
    "label": "Sold out"
  },
  "limitedAvailability": {
    "label": "Limited availability"
  },
  "ticketingStatus": {
    "label": "Ticketing status"
  },
  "virtual": {
    "label": "Virtual"
  },
  "venueName": {
    "label": "Venue name"
  },
  "venueCity": {
    "label": "Venue city"
  },
  "venueState": {
    "label": "Venue state"
  },
  "venueCountry": {
    "label": "Venue country"
  },
  "venueCountryCode": {
    "label": "Venue country code"
  },
  "venueAddress": {
    "label": "Venue address"
  },
  "venuePostalCode": {
    "label": "Venue postal code"
  },
  "venueLatitude": {
    "label": "Venue latitude"
  },
  "venueLongitude": {
    "label": "Venue longitude"
  },
  "venueUrl": {
    "label": "Venue url"
  },
  "venueImageUrl": {
    "label": "Venue image url"
  },
  "artists": {
    "label": "Artists"
  },
  "artistNames": {
    "label": "Artist names"
  },
  "presales": {
    "label": "Presales"
  },
  "seatmapImageUrl": {
    "label": "Seatmap image url"
  },
  "categoryId": {
    "label": "Category id"
  },
  "changeType": {
    "label": "Change type"
  },
  "changedFields": {
    "label": "Changed fields"
  },
  "firstSeenAt": {
    "label": "First seen at"
  },
  "lastSeenAt": {
    "label": "Last seen at"
  }
}
```

## About this Actor

This example demonstrates how to use [Ticketmaster Scraper - Events, Artists & Venues](https://apify.com/abotapi/ticketmaster-event-discovery.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/ticketmaster-event-discovery.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/abotapi/ticketmaster-event-discovery.md

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`).
