# Facebook Events Scraper: Event Details

**Use case:** 

Extract one public Facebook event with structured dates, venue, host, ticket links, media, categories, engagement, source URLs, and export-ready fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.facebook.com/events/1855253805343101"
    }
  ],
  "eventIds": [
    "1855253805343101"
  ],
  "maxItems": 1,
  "includePastEvents": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "dateTimeSentence": {
    "label": "Date/time sentence",
    "format": "string"
  },
  "utcStartDate": {
    "label": "UTC start date",
    "format": "string"
  },
  "utcEndDate": {
    "label": "UTC end date",
    "format": "string"
  },
  "timezone": {
    "label": "Timezone",
    "format": "string"
  },
  "isOnline": {
    "label": "Online",
    "format": "boolean"
  },
  "isCanceled": {
    "label": "Canceled",
    "format": "boolean"
  },
  "usersResponded": {
    "label": "Responses",
    "format": "integer"
  },
  "ticketUrl": {
    "label": "Ticket URL",
    "format": "string"
  },
  "hostName": {
    "label": "Host",
    "format": "string"
  },
  "locationName": {
    "label": "Location name",
    "format": "string"
  },
  "locationAddress": {
    "label": "Location address",
    "format": "string"
  },
  "locationLat": {
    "label": "Location lat",
    "format": "number"
  },
  "locationLng": {
    "label": "Location lng",
    "format": "number"
  },
  "discoveredVia": {
    "label": "Discovered via",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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