# Zomato Restaurant Market Map Scraper

**Use case:** 

Build a Zomato restaurant market map with cuisines, ratings, review counts, localities, cost-for-two, and profile URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.zomato.com/bangalore/restaurants"
    }
  ],
  "maxItems": 250,
  "maxPages": 50,
  "crawlCuisinePages": true,
  "includePromoted": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "SHADER"
    ]
  }
}
```

## Output

```json
{
  "restaurantId": {
    "label": "Restaurant ID"
  },
  "name": {
    "label": "Name"
  },
  "url": {
    "label": "Zomato URL",
    "format": "link"
  },
  "city": {
    "label": "City"
  },
  "locality": {
    "label": "Locality"
  },
  "cuisineText": {
    "label": "Cuisines"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Reviews"
  },
  "costForTwo": {
    "label": "Cost for two"
  },
  "isPromoted": {
    "label": "Promoted"
  },
  "sourceQuery": {
    "label": "Source query"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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