# TickPick concert tickets scraper

**Use case:** 

Search TickPick concerts and extract event dates, venues, availability, and current low-to-high ticket prices.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.tickpick.com/buy-five-finger-death-punch-cody-jinks-eva-under-fire-tickets-the-cynthia-woods-mitchell-pavilion-9-27-26-6pm/7676474/"
    }
  ],
  "searchQueries": [
    "concert"
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "eventId": {
    "label": "Event ID",
    "format": "text"
  },
  "title": {
    "label": "Event",
    "format": "text"
  },
  "startTime": {
    "label": "Start time",
    "format": "date"
  },
  "performers": {
    "label": "Performers",
    "format": "array"
  },
  "venueName": {
    "label": "Venue",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "lowPrice": {
    "label": "Low price",
    "format": "number"
  },
  "highPrice": {
    "label": "High price",
    "format": "number"
  },
  "priceValidFrom": {
    "label": "Price checked",
    "format": "date"
  },
  "url": {
    "label": "TickPick URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [TickPick Events & Tickets Scraper](https://apify.com/automation-lab/tickpick-events-tickets-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/tickpick-events-tickets-scraper) to learn more, explore other use cases, and run it yourself.