# Scrape Yelp Reviews by Category

**Use case:** 

Collect Yelp reviews for businesses in any category and location: rating, text, date and reviewer. For reputation and market research.

## Input

```json
{
  "searchTerms": [
    "dentists"
  ],
  "locations": [
    "Austin, TX"
  ],
  "startUrls": [],
  "maxResults": 25,
  "maxReviewsPerBusiness": 20,
  "reviewSortBy": "newest",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "businessName": {
    "label": "Business",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "# Reviews",
    "format": "integer"
  },
  "priceRange": {
    "label": "Price",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "url": {
    "label": "Yelp URL",
    "format": "string"
  }
}
```

## About this Actor

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