# Event Schema Scraper for Concert Ticket Websites

**Use case:** 

Extract JSON-LD Event Schema from major concert ticket sites. Get structured data on events, including details from Ticketmaster and Eventbrite.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.ticketmaster.com/"
    },
    {
      "url": "https://www.eventbrite.com/"
    },
    {
      "url": "https://concerts.livenation.com/"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Page title",
    "format": "string"
  },
  "metaDescription": {
    "label": "Meta description",
    "format": "string"
  },
  "canonical": {
    "label": "Canonical URL",
    "format": "string"
  },
  "schemaTypes": {
    "label": "Schema types",
    "format": "array"
  },
  "jsonLd": {
    "label": "JSON-LD",
    "format": "array"
  },
  "openGraph": {
    "label": "Open Graph",
    "format": "object"
  },
  "twitter": {
    "label": "Twitter Card",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [JSON-LD Schema & Meta Tag Extractor](https://apify.com/logiover/json-ld-schema-meta-tag-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/json-ld-schema-meta-tag-extractor) to learn more, explore other use cases, and run it yourself.