# Discover New Recipes from US Restaurant Menus

**Use case:** 

Extract a wide array of meal ideas and ingredient combinations from diverse US restaurant menus to inspire new recipe development for your meal kit service. Lev

## Input

```json
{
  "restaurantUrls": [
    "https://www.ubereats.com/us/store/sweetgreen-union-square/2x3y4z5a6b7c8d9e",
    "https://www.ubereats.com/us/store/chipotle-mexican-grill-broadway/a9b8c7d6e5f4g3h2",
    "https://www.ubereats.com/us/store/the-halal-guys-53rd-6th/h1g2f3e4d5c6b7a8"
  ],
  "maxItemsPerRestaurant": 150,
  "country": "us"
}
```

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