The Movie Database · Schema

MovieExternalIdsResponse

TMDB Movies — External IDs (200 payload).

CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

Properties

Name Type Description
id integer
imdb_id string
wikidata_id object
facebook_id string
instagram_id object
twitter_id object
View JSON Schema on GitHub

JSON Schema

tmdb-api-movie-external-ids-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-movie-external-ids-response-schema.json",
  "title": "MovieExternalIdsResponse",
  "description": "TMDB Movies \u2014 External IDs (200 payload).",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "examples": [
        550
      ],
      "default": 0
    },
    "imdb_id": {
      "type": "string",
      "examples": [
        "tt0137523"
      ]
    },
    "wikidata_id": {},
    "facebook_id": {
      "type": "string",
      "examples": [
        "FightClub"
      ]
    },
    "instagram_id": {},
    "twitter_id": {}
  }
}