# Bulk Title to IMDb ID Lookup: Resolve a List at Once

**Use case:** 

Feed a list of movie and show titles and get one merged, de-duplicated table of IMDb IDs and years. Batch title-to-ID matching for datasets and spreadsheets.

## Input

```json
{
  "query": "breaking bad",
  "queries": [
    "inception",
    "dune",
    "oppenheimer",
    "interstellar",
    "tenet"
  ],
  "type": "titles",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title / Name",
    "format": "text"
  },
  "kind": {
    "label": "Kind",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "starsOrKnownFor": {
    "label": "Stars / Known for",
    "format": "text"
  },
  "url": {
    "label": "IMDb URL",
    "format": "link"
  }
}
```

## About this Actor

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