# Analyze Competitor Facebook Reviews for Sentiment & Keywords

**Use case:** 

Scrape recent Facebook reviews for key competitors to identify customer sentiment and frequently mentioned keywords. This allows you to uncover competitor stren

## Input

```json
{
  "mode": "search",
  "startUrls": [
    {
      "url": "https://www.facebook.com/mcdonalds/reviews"
    }
  ],
  "searchQueries": [
    "Starbucks reviews",
    "Dunkin' reviews",
    "Peet's Coffee reviews"
  ],
  "maxReviews": 5,
  "maxReviewsPerPage": 50,
  "sortBy": "most_recent",
  "filterByRecommendation": "all",
  "filterByDateFrom": "2023-11-01",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "isRecommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "text": {
    "label": "Review Text",
    "format": "text"
  },
  "createdAt": {
    "label": "Date",
    "format": "text"
  },
  "reactionCount": {
    "label": "Reactions",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "reviewUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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