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": "redonemov",
  "id": 845781,
  "imdb_id": "tt14948432",
  "instagram_id": "redonemov",
  "twitter_id": "redonemov",
  "wikidata_id": "Q114876737"
}

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
Example:

"845781"

Response

200 - application/json

External IDs

The response is of type object.