# IMDb Movie Market Research Watchlist

**Use case:** 

Create a focused IMDb watchlist by combining genre, year, rating, vote thresholds, and sorting for content strategy research.

## Input

```json
{
  "titleType": "feature",
  "genres": [
    "sci-fi",
    "action"
  ],
  "releaseYearFrom": 2000,
  "releaseYearTo": 2026,
  "ratingMin": 6.5,
  "ratingMax": 9.5,
  "minVotes": 25000,
  "sort": "release_date_desc",
  "maxResults": 50
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Poster",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "releaseYear": {
    "label": "Year",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "voteCount": {
    "label": "Votes",
    "format": "number"
  },
  "metascore": {
    "label": "Metascore",
    "format": "number"
  },
  "genres": {
    "label": "Genres",
    "format": "text"
  },
  "runtimeFormatted": {
    "label": "Runtime",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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