# Zomato Restaurants & Reviews

**Use case:** 

Scrape Zomato. Search/URL. Get restaurant details (name, cuisine, rating, cost, address) & reviews (rating, author, text, photos).

## Input

```json
{
  "mode": "search",
  "cities": [
    "ncr"
  ],
  "context": "delivery",
  "offersOnly": false,
  "urls": [
    "https://www.zomato.com/ncr/delivery"
  ],
  "fetchDetails": true,
  "fetchReviews": true,
  "maxReviews": 20,
  "reviewsSort": "popular",
  "maxItems": 20,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "cuisineString": {
    "label": "Cuisines",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "object"
  },
  "costForTwoText": {
    "label": "Cost for two",
    "format": "text"
  },
  "locality": {
    "label": "Locality",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "deliveryTime": {
    "label": "Delivery",
    "format": "text"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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