# IMDb Top 250 Movies Scraper - Ratings & Cast

**Use case:** 

Export the full IMDb Top 250 movies chart with rating, vote count, year, runtime, genres, directors, cast, box office and plot. CSV, JSON or Excel.

## Input

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

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "titleType": {
    "label": "Type",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "rating": {
    "label": "IMDb rating",
    "format": "number"
  },
  "voteCount": {
    "label": "Votes",
    "format": "number"
  },
  "top250Rank": {
    "label": "Top 250",
    "format": "number"
  },
  "metascore": {
    "label": "Metascore",
    "format": "number"
  },
  "genres": {
    "label": "Genres",
    "format": "array"
  },
  "runtimeMinutes": {
    "label": "Runtime (min)",
    "format": "number"
  },
  "contentRating": {
    "label": "Rated",
    "format": "text"
  },
  "grossWorldwide": {
    "label": "Gross (WW)",
    "format": "number"
  },
  "url": {
    "label": "IMDb 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.