# Compare Yelp reviews across two businesses

**Use case:** 

Collect newest public Yelp reviews from two business pages in one run for competitor, location, or market comparison.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.yelp.com/biz/gary-danko-san-francisco"
    },
    {
      "url": "https://www.yelp.com/biz/bottega-louie-los-angeles"
    }
  ],
  "maxReviewsPerBusiness": 5,
  "sort": "DATE_DESC",
  "redactReviewerProfileUrls": true,
  "includeReviewerDetails": false
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "reviewPosition": {
    "label": "Review position",
    "format": "integer"
  },
  "businessName": {
    "label": "Business name",
    "format": "string"
  },
  "businessRating": {
    "label": "Business rating",
    "format": "number"
  },
  "businessReviewCount": {
    "label": "Business review count",
    "format": "integer"
  },
  "rating": {
    "label": "Review rating",
    "format": "number"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "createdAtLocal": {
    "label": "Created at (local)",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer name",
    "format": "string"
  },
  "mediaCount": {
    "label": "Media count",
    "format": "integer"
  },
  "ownerReplyText": {
    "label": "Owner reply",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "collectedAt": {
    "label": "Collected at",
    "format": "string"
  }
}
```

## About this Actor

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