Skip to main content
GET
/
movie
/
{movie_id}
/
external_ids
External ID
curl --request GET \
  --url https://api.themoviedb.org/3/movie/{movie_id}/external_ids \
  --header 'Authorization: Bearer <token>'
{
  "id": 550,
  "imdb_id": "tt0137523",
  "wikidata_id": "Q190050",
  "facebook_id": "FightClub",
  "instagram_id": null,
  "twitter_id": null
}
Media DatabasesSocial IDs
IMDbFacebook
WikidataInstagram
TwitterTwitter

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

The ID of the movie

Response

200 - application/json

Successful

id
integer

A unique numerical identifier

imdb_id
string

The unique identifier assigned to the movie on IMDb

wikidata_id
string

The unique identifier assigned to the movie in Wikidata

facebook_id
string

The unique identifier for the official Facebook page or profile

instagram_id
string

The unique identifier for the official Instagram profile

twitter_id
string

The unique identifier for the official Twitter profile