# DoorDash Restaurant Scraper: Menus, Prices & Reviews

**Use case:** 

Scrape DoorDash restaurants by keyword or store URL. Get menus, prices, ratings, reviews, hours, location, contact info, and Google rating data.

## Input

```json
{
  "mode": "search",
  "search": [
    "pizza"
  ],
  "storeType": "any",
  "ratedOnly": false,
  "dealsOnly": false,
  "urls": [
    "https://www.doordash.com/store/673363/"
  ],
  "includeMenu": true,
  "includeBusiness": true,
  "includeReviews": true,
  "maxStores": 20,
  "maxPages": 100,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "storeId": {
    "label": "Store ID"
  },
  "name": {
    "label": "Name"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingCount": {
    "label": "# Ratings"
  },
  "priceTier": {
    "label": "Price"
  },
  "cuisines": {
    "label": "Cuisines"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "latitude": {
    "label": "Lat"
  },
  "longitude": {
    "label": "Lng"
  },
  "phone": {
    "label": "Phone"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "deliveryFee": {
    "label": "Delivery fee"
  },
  "etaMinutes": {
    "label": "ETA (min)"
  },
  "isSponsored": {
    "label": "Sponsored"
  },
  "menuItemCount": {
    "label": "# Menu items"
  },
  "reviewCount": {
    "label": "# Reviews"
  }
}
```

## About this Actor

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