GET
/
3
/
movie
/
{movie_id}
/
external_ids
External IDs
curl --request GET \
  --url https://api.themoviedb.org/3/movie/{movie_id}/external_ids \
  --header 'Authorization: Bearer <token>'
{
  "facebook_id": "GladiatorMovie",
  "id": 558449,
  "imdb_id": "tt9218128",
  "instagram_id": "gladiatormovie",
  "twitter_id": "GladiatorMovie",
  "wikidata_id": "Q115789958"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

movie_id
integer
required

This is a unique identifier for a movie.

Example:

""

Response

200 - application/json

external ids

facebook_id
string

This is the identifier for the movie's official Facebook page.

Example:

"GladiatorMovie"

id
number

This is a unique identifier for a movie within the database.

Example:

558449

imdb_id
string

This is the unique identifier for the movie on IMDb (Internet Movie Database). It's used for retrieving detailed information about the movie from IMDb.

Example:

"tt9218128"

instagram_id
string

This is the identifier for the official Instagram account associated with the movie.

Example:

"gladiatormovie"

twitter_id
string

This identifier refers to the movie's official Twitter account.

Example:

"GladiatorMovie"

wikidata_id
string

This identifier points to the movie's entry in Wikidata, a free and open knowledge base.

Example:

"Q115789958"