# Swiggy Restaurant Listings for Lucknow and Surat

**Use case:** 

Extract restaurant data from Swiggy for Lucknow and Surat. Obtain listings with menus, ratings, and pricing information.

## Input

```json
{
  "cities": [
    "lucknow",
    "surat"
  ],
  "gridDensity": "low",
  "maxPerCity": 800,
  "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.