# Rotten Tomatoes movie reviews scraper

**Use case:** 

Extract Rotten Tomatoes critic and audience reviews, ratings, dates, publications, and review URLs from a movie page.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.rottentomatoes.com/m/oppenheimer_2023/reviews"
    }
  ],
  "reviewTypes": [
    "all-critics",
    "all-audience"
  ],
  "maxItems": 100,
  "maxPagesPerUrl": 8,
  "pageSize": 20
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID"
  },
  "mediaTitle": {
    "label": "Media title"
  },
  "mediaType": {
    "label": "Media type"
  },
  "reviewType": {
    "label": "Review type"
  },
  "reviewerName": {
    "label": "Reviewer"
  },
  "publicationName": {
    "label": "Publication"
  },
  "rating": {
    "label": "Rating"
  },
  "scoreSentiment": {
    "label": "Sentiment"
  },
  "isTopCritic": {
    "label": "Top critic"
  },
  "isVerifiedAudience": {
    "label": "Verified audience"
  },
  "reviewText": {
    "label": "Review text",
    "format": "text"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "date"
  },
  "originalReviewUrl": {
    "label": "Original review URL",
    "format": "link"
  },
  "mediaUrl": {
    "label": "Media URL",
    "format": "link"
  },
  "reviewsUrl": {
    "label": "Reviews URL",
    "format": "link"
  },
  "reviewerProfileUrl": {
    "label": "Reviewer profile URL",
    "format": "link"
  },
  "publicationUrl": {
    "label": "Publication URL",
    "format": "link"
  },
  "language": {
    "label": "Language"
  },
  "isSuperReviewer": {
    "label": "Super reviewer"
  },
  "hasSpoilers": {
    "label": "Has spoilers"
  },
  "pageNumber": {
    "label": "Page"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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