# Find Vegetarian & Vegan Options in NYC Menus

**Use case:** 

Extract menu items and descriptions from various New York City restaurants to identify and categorize vegetarian, vegan, and gluten-free options. This data is i

## Input

```json
{
  "restaurantUrls": [
    "https://www.ubereats.com/us/store/by-chloe-bleecker-street/n5b4v3c2x1z0q9w8",
    "https://www.ubereats.com/us/store/peacefood-cafe-union-square/e7r6t5y4u3i2o1p0",
    "https://www.ubereats.com/us/store/the-butchers-daughter-nolita/a6s5d4f3g2h1j0k9"
  ],
  "maxItemsPerRestaurant": 75,
  "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.