# Scrape Local Food Festival Information for Vendors

**Use case:** 

Extract event details from local food festivals to help food truck owners and vendors identify new selling opportunities. This provides critical information lik

## Input

```json
{
  "eventUrls": [
    "https://www.facebook.com/pg/sfstreeteats/events/",
    "https://www.facebook.com/pg/SmorgasburgLA/events/",
    "https://www.facebook.com/pg/AustinFoodWine/events/"
  ]
}
```

## Output

```json
{
  "event_id": {
    "label": "Event ID",
    "format": "text"
  },
  "name": {
    "label": "Event Name",
    "format": "text"
  },
  "formatted_date": {
    "label": "Date",
    "format": "text"
  },
  "location_name": {
    "label": "Location",
    "format": "text"
  },
  "is_online": {
    "label": "Online",
    "format": "text"
  },
  "users_responded": {
    "label": "Responded",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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