# Track Dune Part Two scores and reviews

**Use case:** 

Scrape Rotten Tomatoes Tomatometer, audience score, critic reviews, and audience reviews for Dune: Part Two in a reusable task.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.rottentomatoes.com/m/dune_part_two"
    }
  ],
  "reviewTypes": [
    "critic",
    "audience"
  ],
  "includeAudienceReviews": true,
  "maxReviewsPerTitle": 8,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "mediaTitle": {
    "label": "Media title",
    "format": "string"
  },
  "reviewType": {
    "label": "Review type",
    "format": "string"
  },
  "tomatometerScore": {
    "label": "Tomatometer score",
    "format": "integer"
  },
  "audienceScore": {
    "label": "Audience score",
    "format": "integer"
  },
  "reviewerName": {
    "label": "Reviewer name",
    "format": "string"
  },
  "publicationName": {
    "label": "Publication",
    "format": "string"
  },
  "reviewSentiment": {
    "label": "Review sentiment",
    "format": "string"
  },
  "reviewRating": {
    "label": "Review rating",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "reviewQuote": {
    "label": "Review quote",
    "format": "string"
  },
  "mediaUrl": {
    "label": "Media URL",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "mediaType": {
    "label": "Media type",
    "format": "string"
  },
  "releaseYear": {
    "label": "Release year",
    "format": "integer"
  },
  "genres": {
    "label": "Genres",
    "format": "array"
  },
  "directors": {
    "label": "Directors",
    "format": "array"
  },
  "isTopCritic": {
    "label": "Is top critic",
    "format": "boolean"
  },
  "isVerifiedAudience": {
    "label": "Is verified audience",
    "format": "boolean"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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