# Optimize Catering Menus with Toronto Market Data

**Use case:** 

Gather comprehensive menu data from high-volume catering providers in Toronto to analyze their offerings, pricing, and bundle strategies. Utilize these insights

## Input

```json
{
  "restaurantUrls": [
    "https://www.ubereats.com/ca/store/khao-san-road/u0i9o8p7a6s5d4f3",
    "https://www.ubereats.com/ca/store/pizzeria-libretto-king-street/g2h1j0k9l8m7n6b5",
    "https://www.ubereats.com/ca/store/maman-king-street-west/c4v3b2n1m0l9k8j7"
  ],
  "maxItemsPerRestaurant": 120,
  "country": "ca"
}
```

## 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.