# Swiggy Restaurant Data Scraper for Ahmedabad

**Use case:** 

Extract comprehensive restaurant data from Swiggy in Ahmedabad, including ratings and prices for up to 2000 establishments.

## Input

```json
{
  "cities": [
    "ahmedabad"
  ],
  "gridDensity": "medium",
  "maxPerCity": 2000,
  "scrapeMenus": false,
  "maxMenuItems": 200,
  "maxConcurrency": 5,
  "requestDelay": 400,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "restaurantId": {
    "label": "Restaurant ID",
    "format": "string"
  },
  "name": {
    "label": "Restaurant Name",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "area": {
    "label": "Area",
    "format": "string"
  },
  "avgRating": {
    "label": "Average Rating",
    "format": "number"
  },
  "costForTwo": {
    "label": "Cost For Two",
    "format": "string"
  },
  "deliveryTime": {
    "label": "Delivery Time (mins)",
    "format": "integer"
  },
  "isOpen": {
    "label": "Is Open",
    "format": "boolean"
  },
  "hasMenu": {
    "label": "Has Menu",
    "format": "boolean"
  }
}
```

## About this Actor

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