# Analyze Competitor Restaurant Menus in London

**Use case:** 

Scrape detailed menus from top competitor restaurants in London to gain insights into their offerings, pricing strategies, and popular dishes. Use this data to 

## Input

```json
{
  "restaurantUrls": [
    "https://www.ubereats.com/gb/store/dishoom-carnaby/z7uWqHw7QG21LgR7Q1uN6w",
    "https://www.ubereats.com/gb/store/pizza-pilgrims-carnaby-street/LgR7Q1uN6wQ2z7uWqHw7",
    "https://www.ubereats.com/gb/store/five-guys-carnaby-street/uWqHw7QG21LgR7Q1uN6wz7"
  ],
  "maxItemsPerRestaurant": 100,
  "country": "gb"
}
```

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