Skip to content

Titles Data Dictionary

Fresh

The Titles dataset is the most comprehensive bulk data schema, containing complete metadata records for every title in the IMDb database: movies, TV series, TV episodes, mini-series, short films, documentaries, and video games.

Top-Level Fields

FieldTypeDescription
titleIdstringIMDb title ID (tt + 7+ digits)
remappedTostringCanonical ID if this entry was merged
originalTitlestringTitle in original language of production
akasarrayAlternative titles (AKAs) with locale info
titleDisplayobjectDisplay-formatted title text
awardsarrayAward nominations and wins
creditsByCategoryobjectFull cast and crew by job category
principalCastMembersarrayCurated principal cast
principalCrewMembersarrayCurated principal crew
certificatesarrayContent rating certificates by country
colorarrayColor/black-and-white classification
companiesobjectProduction, distribution, and other companies
countriesarrayCountries of origin
episodeInfoobjectFor episodes: series ID, season, episode number
seriesInfoobjectFor series: start/end years, episode IDs
episodeTitleIdsarrayFor series: list of all episode IDs
officialSiteLinksarrayOfficial website URLs
genresarrayGenre classifications
imageobjectPrimary image (poster) metadata
imdbUrlstringFull URL to IMDb title page
isAdultbooleanWhether the title is classified as adult content
keywordsarrayUser-contributed keywords with vote counts
languagesarrayLanguages used in the title
locationsobjectFilming locations
movieConnectionsarrayConnections to other titles (remakes, sequels, etc.)
plotstringStandard plot summary
plotShortstringShort (one-line) plot summary
plotMediumstringMedium-length plot summary
plotLongstringFull detailed plot summary
releaseDatesarrayRelease dates by country/region
productionStatusobjectCurrent production stage
runtimeMinutesintegerTotal runtime in minutes
taglinesarrayMarketing taglines
titleTypestringType classification (movie, tvSeries, etc.)
imdbRatingobjectAggregate rating and vote count
yearintegerPrimary release year
triviaarrayTrivia items with interest scores
goofsarrayDocumented errors/goofs

titleId and remappedTo

json
{
  "titleId": "tt0068646",
  "originalTitle": "The Godfather"
}

If remapped:

json
{
  "titleId": "tt9999999",
  "remappedTo": "tt0068646"
}

akas

Alternative known-as titles, covering localized releases and alternate translations.

json
{
  "akas": [
    {
      "country": "IT",
      "language": "it",
      "title": "Il Padrino"
    },
    {
      "country": "ES",
      "language": "es",
      "title": "El Padrino"
    },
    {
      "country": "US",
      "language": "en",
      "title": "The Godfather"
    }
  ]
}

creditsByCategory

Full credits organized by job category. Each category key maps to an object with cast or crew arrays.

json
{
  "creditsByCategory": {
    "cast": {
      "cast": [
        {
          "nameId": "nm0000008",
          "roles": [{ "character": "Don Vito Corleone" }],
          "billing": 1,
          "attributes": []
        }
      ]
    },
    "director": {
      "crew": [
        {
          "nameId": "nm0000338",
          "jobs": ["Director"],
          "attributes": []
        }
      ]
    },
    "writer": {
      "crew": [
        {
          "nameId": "nm0000338",
          "jobs": ["Screenplay"],
          "attributes": []
        }
      ]
    }
  }
}

principalCastMembers and principalCrewMembers

Curated subsets of the most significant cast and crew.

json
{
  "principalCastMembers": [
    {
      "nameId": "nm0000008",
      "roles": [{ "character": "Don Vito Corleone" }],
      "billing": 1
    }
  ],
  "principalCrewMembers": [
    {
      "nameId": "nm0000338",
      "category": "director"
    }
  ]
}

certificates

Content rating certifications from national rating bodies.

json
{
  "certificates": [
    {
      "country": "US",
      "rating": "R",
      "ratingsBody": "MPAA",
      "reason": "Violence, language"
    },
    {
      "country": "GB",
      "rating": "18",
      "ratingsBody": "BBFC",
      "reason": ""
    }
  ]
}

companies

Companies involved in the production and distribution of the title, organized by role type.

json
{
  "companies": {
    "production": [
      {
        "companyId": "co0023400",
        "companyName": "Paramount Pictures",
        "country": "US",
        "attributes": []
      }
    ],
    "distribution": [
      {
        "companyId": "co0023400",
        "companyName": "Paramount Pictures",
        "country": "US",
        "attributes": ["theatrical"]
      }
    ],
    "specialEffects": [],
    "miscellaneous": []
  }
}

episodeInfo and seriesInfo

For Episodes (episodeInfo)

json
{
  "episodeInfo": {
    "seriesTitleId": "tt0903747",
    "seasonNumber": 1,
    "episodeNumber": 1
  }
}

For Series (seriesInfo)

json
{
  "seriesInfo": {
    "startYear": 2008,
    "endYear": 2013,
    "episodeTitleIds": ["tt0959621", "tt1054487"]
  }
}

The episodeTitleIds array lists all episode IDs that belong to the series. For large series this can be a very long array.


image

Primary image (typically the poster or cover art) for the title.

json
{
  "image": {
    "height": 1000,
    "id": "rm1234567890",
    "url": "https://m.media-amazon.com/images/M/...",
    "width": 675
  }
}

imdbRating

json
{
  "imdbRating": {
    "rating": 9.2,
    "numberOfVotes": 1900000
  }
}

keywords

json
{
  "keywords": [
    {
      "category": "theme",
      "keyword": "organized crime",
      "votes": 4521
    },
    {
      "category": "theme",
      "keyword": "family",
      "votes": 3102
    }
  ]
}

locations

json
{
  "locations": {
    "scenes": [
      {
        "place": "New York City, New York, USA",
        "attributes": ["exterior"]
      }
    ]
  }
}

movieConnections

Links to related titles — remakes, sequels, prequels, spin-offs, etc.

json
{
  "movieConnections": [
    {
      "type": "follows",
      "titleId": "tt0068646",
      "text": "The original Godfather film"
    },
    {
      "type": "sequel",
      "titleId": "tt0071562",
      "text": "The Godfather Part II"
    }
  ]
}

releaseDates

json
{
  "releaseDates": [
    {
      "country": "US",
      "date": "1972-03-24",
      "attributes": ["limited"]
    },
    {
      "country": "US",
      "date": "1972-03-24",
      "attributes": ["wide"]
    }
  ]
}

trivia and goofs

json
{
  "trivia": [
    {
      "interestScore": 4521,
      "isSpoiler": false,
      "category": "production",
      "text": "Francis Ford Coppola was not the studio's first choice to direct."
    }
  ],
  "goofs": [
    {
      "interestScore": 312,
      "isSpoiler": false,
      "category": "continuity",
      "text": "The coffee level changes between shots during the restaurant scene."
    }
  ]
}

titleType Values

ValueDescription
movieFeature film
tvSeriesTV series
tvEpisodeIndividual TV episode
tvMiniSeriesLimited series
tvMovieMade-for-TV movie
tvSpecialTV special
shortShort film
videoGameVideo game
videoDirect-to-video release

IMDb API Documentation — Internal Reference