# Local Cuisine Data for Geographic Expansion Planning

**Use case:** 

Extract restaurant and menu data from specific geographic areas to understand local cuisine preferences and market saturation before expanding your business. Th

## Input

```json
{
  "storeUrls": [
    "https://www.doordash.com/store/italian-restaurant-miami-12345/",
    "https://www.doordash.com/store/seafood-joint-miami-67890/",
    "https://www.doordash.com/store/cuban-eatery-miami-11223/",
    "https://www.doordash.com/store/vegan-cafe-miami-44556/"
  ],
  "maxItems": 40
}
```

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