MOVIES
cURL
curl --request GET \ --url https://api.themoviedb.org/3/movie/{movie_id}/external_ids \ --header 'Authorization: Bearer <token>'
{ "facebook_id": "redonemov", "id": 845781, "imdb_id": "tt14948432", "instagram_id": "redonemov", "twitter_id": "redonemov", "wikidata_id": "Q114876737" }
The endpoint get the external IDs associated with a specific movie.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"845781"
External IDs
The response is of type object.
object