# Get All Yelp Reviews – Bypass the 3-Review API Limit

**Use case:** 

The Yelp Fusion API returns only 3 reviews per business. This task scrapes them all — full text, ratings, dates and owner replies.

## Input

```json
{
  "businessUrls": [
    {
      "url": "https://www.yelp.com/biz/the-old-fashioned-madison"
    }
  ],
  "maxResultsPerSearch": 10,
  "language": "en",
  "sortBy": "newest",
  "maxReviews": 1000,
  "includeSensitiveData": false
}
```

## Output

```json
{
  "business_url": {
    "label": "Business URL",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "integer"
  },
  "text": {
    "label": "Review Text",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "feedback": {
    "label": "Feedback",
    "format": "object"
  },
  "review_url": {
    "label": "Review URL",
    "format": "string"
  }
}
```

## About this Actor

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