# IMDb Movie Search by Keyword Scraper

**Use case:** 

Search IMDb by title keyword and export every match with rating, votes, year, type, genres, runtime, directors, cast and plot summary. Clean CSV output.

## Input

```json
{
  "searchQueries": [
    "Dune"
  ],
  "searchType": "title",
  "discover": false,
  "sortBy": "popularity",
  "sortOrder": "DESC",
  "includeTitleDetails": true,
  "castLimit": 20,
  "includeFullCast": false,
  "includeEpisodes": false,
  "maxEpisodesPerSeries": 2000,
  "includeReviews": false,
  "maxReviewsPerTitle": 25,
  "maxItems": 100,
  "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.