GET
/
movie
/
{movie_id}
/
external_ids
curl --request GET \
  --url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/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
string
required

Query Parameters

language
string

Defaults to en-US

Example:

"string"

Response

200 - application/json

Fetch external IDs

The response is of type object.