# Identify Emerging Food Trends in Sydney Menus

**Use case:** 

Scrape menus from popular Sydney restaurants to identify trending ingredients, dish types, and dietary preferences for market research. This data helps food bus

## Input

```json
{
  "restaurantUrls": [
    "https://www.ubereats.com/au/store/bills-surry-hills/q9w8e7r6t5y4u3i2",
    "https://www.ubereats.com/au/store/bondi-ice-bergs/i1o2p3a4s5d6f7g8",
    "https://www.ubereats.com/au/store/din-tai-fung-world-square/s7d6f5g4h3j2k1l0"
  ],
  "maxItemsPerRestaurant": 80,
  "country": "au"
}
```

## Output

```json
{
  "restaurantName": {
    "label": "Restaurant",
    "format": "string"
  },
  "cuisines": {
    "label": "Cuisines",
    "format": "array"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "priceRange": {
    "label": "Price",
    "format": "string"
  },
  "isOpen": {
    "label": "Open",
    "format": "boolean"
  },
  "deliveryFee": {
    "label": "Delivery Fee",
    "format": "string"
  },
  "estimatedDeliveryTime": {
    "label": "ETA",
    "format": "string"
  },
  "menuSectionCount": {
    "label": "Sections",
    "format": "integer"
  },
  "menuItemCount": {
    "label": "Items",
    "format": "integer"
  },
  "restaurantUrl": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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