Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Movies
External IDs
This endpoint retrieves the list of external Id of a particular movie
GET
/
3
/
movie
/
{movie_id}
/
external_ids
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/external_ids \
--header 'Authorization: Bearer <token>'
Copy
{
"facebook_id": "redonemov",
"id": 845781,
"imdb_id": "tt14948432",
"instagram_id": "redonemov",
"twitter_id": "redonemov",
"wikidata_id": "Q114876737"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
External IDs
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/external_ids \
--header 'Authorization: Bearer <token>'
Copy
{
"facebook_id": "redonemov",
"id": 845781,
"imdb_id": "tt14948432",
"instagram_id": "redonemov",
"twitter_id": "redonemov",
"wikidata_id": "Q114876737"
}
Assistant
Responses are generated using AI and may contain mistakes.