# Top Rated IMDb Movies Scraper

**Use case:** 

Scrape IMDb feature films by genre, rating, release year, vote count, and sort order for movie research and analytics.

## Input

```json
{
  "titleType": "feature",
  "genres": [
    "drama",
    "thriller"
  ],
  "releaseYearFrom": 2010,
  "releaseYearTo": 2025,
  "ratingMin": 7.5,
  "minVotes": 50000,
  "sort": "user_rating_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.