# Scrape concert tickets on Ticketmaster

**Use case:** 

Extract concert event and ticket listings from Ticketmaster. Structured event data with dates and venues. Pay per result.

## Input

```json
{
  "searchQuery": "coldplay",
  "market": "us",
  "maxResults": 5,
  "sortBy": "relevance",
  "classification": "",
  "fetchDetails": false,
  "excludeResale": false,
  "startUrls": []
}
```

## Output

```json
{
  "title": {
    "label": "Event",
    "format": "text"
  },
  "startDate": {
    "label": "Date",
    "format": "date"
  },
  "venueName": {
    "label": "Venue",
    "format": "text"
  },
  "venueCity": {
    "label": "City",
    "format": "text"
  },
  "venueCountry": {
    "label": "Country",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Ticketmaster Scraper](https://apify.com/unfenced-group/ticketmaster-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/ticketmaster-scraper) to learn more, explore other use cases, and run it yourself.