# Facebook concert event details extractor

**Use case:** 

Turn a known public Facebook concert URL into typed schedule, venue, host, attendance, ticket, category, and image data.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.facebook.com/events/1614250356703863/"
    }
  ],
  "maxEvents": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxRetries": 1
}
```

## Output

```json
{
  "eventId": {
    "label": "Event ID"
  },
  "name": {
    "label": "Event name",
    "format": "text"
  },
  "dateText": {
    "label": "Facebook date and time",
    "format": "text"
  },
  "startDate": {
    "label": "Start",
    "format": "date"
  },
  "endDate": {
    "label": "End",
    "format": "date"
  },
  "venueName": {
    "label": "Venue",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "goingCount": {
    "label": "Going",
    "format": "number"
  },
  "interestedCount": {
    "label": "Interested",
    "format": "number"
  },
  "respondedCount": {
    "label": "Responded",
    "format": "number"
  },
  "organizerNames": {
    "label": "Organizers",
    "format": "array"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "privacy": {
    "label": "Privacy",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "ticketUrl": {
    "label": "Tickets",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "link"
  },
  "url": {
    "label": "Facebook event",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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