GET
/
3
/
movie
/
{movie_id}
/
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

The response is of type object.