# Yelp Restaurant Scraper – Export Restaurants by City

**Use case:** 

Scrape every restaurant in a city from Yelp with ratings, price range, categories, hours and contact info. Export to CSV, JSON or Excel.

## Input

```json
{
  "searchQueries": [
    "restaurants"
  ],
  "searchLocations": [
    "Chicago, IL"
  ],
  "businessUrls": [
    {
      "url": "https://www.yelp.com/biz/the-old-fashioned-madison"
    }
  ],
  "maxResultsPerSearch": 50
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "avg_rating": {
    "label": "Average Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Review Count",
    "format": "integer"
  },
  "price_range": {
    "label": "Price Range",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Yelp Business Scraper](https://apify.com/beatanalytics/yelp-business-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/beatanalytics/yelp-business-scraper) to learn more, explore other use cases, and run it yourself.