# Collect Yelp reviews for customer sentiment research

**Use case:** 

Extract public reviews, ratings, and author details from one Yelp business page to support sentiment analysis and reporting.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.yelp.com/biz/molinari-delicatessen-san-francisco"
    }
  ],
  "businessSlugs": [],
  "maxReviewsPerBusiness": 10,
  "sortBy": "relevance_desc",
  "language": "en",
  "dateFrom": "2025-01-01",
  "dateTo": "2026-06-18",
  "includeBusinessSummary": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "BUYPROXIES94952"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "string"
  },
  "businessName": {
    "label": "Business",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "createdAt": {
    "label": "Date",
    "format": "string"
  },
  "usefulCount": {
    "label": "Useful",
    "format": "integer"
  },
  "ownerReply": {
    "label": "Owner reply",
    "format": "string"
  },
  "businessUrl": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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