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"
}
This endpoint allows you to get external IDs of a movie.
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"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Defaults to en-US
"string"
Fetch external IDs
The response is of type object
.