# Scrape DoorDash Restaurant Menus for Competitor Analysis

**Use case:** 

Gain a deep understanding of your competitors' menu offerings, pricing strategies, and popular dishes by extracting full menu details from their DoorDash listin

## Input

```json
{
  "storeUrls": [
    "https://www.doordash.com/store/chick-fil-a-san-francisco-2144360/",
    "https://www.doordash.com/store/in-n-out-burger-san-francisco-1229712/",
    "https://www.doordash.com/store/shake-shack-san-francisco-2325377/"
  ],
  "maxItems": 30
}
```

## Output

```json
{
  "storeName": {
    "label": "Restaurant",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "menuItemCount": {
    "label": "Menu Items",
    "format": "integer"
  },
  "menuSectionCount": {
    "label": "Sections",
    "format": "integer"
  },
  "storeUrl": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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