# Facebook Page Reviews Scraper

**Use case:** 

Scrape reviews and recommendations from a Facebook business page. Export reviewer, rating, review text and date for reputation research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.facebook.com/McDonalds/"
    }
  ],
  "maxItems": 25,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "pageUrl": {
    "label": "Page URL",
    "format": "link"
  },
  "reviewAuthorUrl": {
    "label": "Author URL",
    "format": "link"
  },
  "authorProfilePic": {
    "label": "Author Pic",
    "format": "link"
  },
  "pageName": {
    "label": "Page",
    "format": "text"
  },
  "recommendationPercent": {
    "label": "Recommend %",
    "format": "text"
  },
  "totalReviews": {
    "label": "Total Reviews",
    "format": "text"
  },
  "reviewAuthor": {
    "label": "Author",
    "format": "text"
  },
  "reviewText": {
    "label": "Review",
    "format": "text"
  },
  "isRecommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "reactionCount": {
    "label": "Reactions",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "reviewDate": {
    "label": "Date",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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