# IMDb User Reviews Scraper by Title

**Use case:** 

Export IMDb user reviews for any film or series with star rating, review title, full text, author, date and helpfulness votes. Sentiment analysis ready.

## Input

```json
{
  "searchQueries": [
    "Dune"
  ],
  "searchType": "title",
  "titleIds": [
    "tt15239678"
  ],
  "discover": false,
  "sortBy": "popularity",
  "sortOrder": "DESC",
  "includeTitleDetails": true,
  "castLimit": 20,
  "includeFullCast": false,
  "includeEpisodes": false,
  "maxEpisodesPerSeries": 2000,
  "includeReviews": true,
  "maxReviewsPerTitle": 50,
  "maxItems": 100,
  "deduplicate": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "titleId": {
    "label": "Title ID",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "authorRating": {
    "label": "Rating",
    "format": "number"
  },
  "summary": {
    "label": "Headline",
    "format": "text"
  },
  "upVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "downVotes": {
    "label": "Not helpful",
    "format": "number"
  },
  "spoiler": {
    "label": "Spoiler",
    "format": "boolean"
  },
  "submissionDate": {
    "label": "Date",
    "format": "text"
  },
  "url": {
    "label": "Review URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [IMDb Scraper - Movies, TV Shows, Ratings, Cast & Box Office](https://apify.com/scrapesage/imdb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/imdb-scraper) to learn more, explore other use cases, and run it yourself.