# Rotten Tomatoes Movie Reviews Data Extraction

**Use case:** 

Extract comprehensive movie and TV reviews from Rotten Tomatoes. Retrieve critic scores, audience sentiment, and review texts for detailed analysis.

## Input

```json
{
  "urls": [
    "https://www.rottentomatoes.com/m/hadestown_the_musical"
  ],
  "reviewType": "all-critics",
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "movieTitle": {
    "label": "Movie",
    "format": "text"
  },
  "queryReviewType": {
    "label": "Review Type",
    "format": "text"
  },
  "createDate": {
    "label": "Date",
    "format": "date"
  },
  "scoreSentiment": {
    "label": "Sentiment",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "originalScore": {
    "label": "Original Score",
    "format": "text"
  },
  "quote": {
    "label": "Quote",
    "format": "text"
  },
  "criticName": {
    "label": "Critic",
    "format": "text"
  },
  "publicationName": {
    "label": "Publication",
    "format": "text"
  },
  "userDisplayName": {
    "label": "Audience User",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "isTopReview": {
    "label": "Top Review",
    "format": "boolean"
  },
  "movieUrl": {
    "label": "Movie URL",
    "format": "link"
  },
  "fullReviewUrl": {
    "label": "Full Review",
    "format": "link"
  }
}
```

## About this Actor

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