# AllEvents music events extractor

**Use case:** 

Extract AllEvents music event listings with dates, venues, organizer names, detail pages, ticket URLs, and prices.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://allevents.in/new-york/music"
    }
  ],
  "maxItems": 75,
  "includeDetails": true
}
```

## Output

```json
{
  "eventId": {
    "label": "Event ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Event URL",
    "format": "link"
  },
  "startDate": {
    "label": "Start date",
    "format": "date"
  },
  "dateText": {
    "label": "Date text",
    "format": "text"
  },
  "venueName": {
    "label": "Venue",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "organizerName": {
    "label": "Organizer",
    "format": "text"
  },
  "priceText": {
    "label": "Price",
    "format": "text"
  },
  "interestedCount": {
    "label": "Interested",
    "format": "number"
  },
  "ticketUrl": {
    "label": "Ticket URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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