# Extract Movie & TV Show Reviews from IMDb

**Use case:** 

Gather user reviews for specific movies or TV shows to understand audience sentiment and reception. This data is invaluable for market research, content improve

## Input

```json
{
  "mode": "topRated",
  "searchQuery": "inception",
  "imdbIds": [
    "tt2906216"
  ],
  "titleType": "",
  "genres": [],
  "sortBy": "RANKING",
  "sortOrder": "DESC",
  "topRatedChart": "TOP_250",
  "maxItems": 50
}
```

## Output

```json
{
  "imdbId": {
    "label": "Imdb id"
  },
  "title": {
    "label": "Title"
  },
  "year": {
    "label": "Year"
  },
  "type": {
    "label": "Type"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingCount": {
    "label": "Rating count"
  },
  "genres": {
    "label": "Genres"
  },
  "imdbUrl": {
    "label": "Imdb url"
  }
}
```

## About this Actor

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