Authentication
Account
Certifications
Configuration
Credits
Find
Keywords
Movies
- POSTAdd rating
- DELDelete rating
- GETFetch account states
- GETFetch alternative titles
- GETFetch external IDs
- GETFetch latest movie
- GETFetch movie changes
- GETFetch movie credits
- GETFetch movie details
- GETFetch movie images
- GETFetch movie keywords
- GETFetch movie List
- GETFetch movie recommendations
- GETFetch movie translation
- GETFetch release dates
- GETFetch similar movies
- GETFetch user reviews
- GETFetch videos
- GETFetch watch providers
People
People-Lists
Reviews
Search
Tv-episode-groups
Tv-episodes
Tv-seasons
Tv-Series
- POSTAdd rating
- DELDelete rating
- GETFetch account states
- GETFetch aggregate credits
- GETFetch alternative titles
- GETFetch content ratings
- GETFetch episode groups
- GETFetch external IDs
- GETFetch latest TV shows
- GETFetch reviews
- GETFetch series images
- GETFetch similar shows
- GETFetch theatrically screened
- GETFetch TV changes
- GETFetch TV credits
- GETFetch TV details
- GETFetch TV keywords
- GETFetch tv show translations
- GETFetch tv show videos
- GETFetch watch providers
- GETList TV series
Authentication
Account
Certifications
Configuration
Movies
- GETFetch movie details
- GETFetch account states
- GETFetch alternative titles
- GETFetch movie changes
- GETFetch movie credits
- GETFetch external IDs
- GETFetch movie images
- GETFetch movie keywords
- GETFetch latest movie
- GETFetch movie List
- GETFetch movie recommendations
- GETFetch release dates
- GETFetch user reviews
- GETFetch similar movies
- GETFetch movie translation
- GETFetch videos
- GETFetch watch providers
- POSTAdd rating
- DELDelete rating
Credits
Find
Search
Keywords
People Lists
People
Reviews
TV Series
- GETFetch TV details
- GETFetch account states
- GETFetch aggregate credits
- GETFetch alternative titles
- GETFetch TV changes
- GETFetch content ratings
- GETFetch TV credits
- GETFetch episode groups
- GETFetch external IDs
- GETFetch series images
- GETFetch TV keywords
- GETFetch latest TV shows
- GETList TV series
- GETFetch TV recommendations
- GETFetch reviews
- GETFetch theatrically screened
- GETFetch similar shows
- GETFetch tv show translations
- GETFetch tv show videos
- GETFetch watch providers
- POSTAdd rating
- DELDelete rating
TV Seasons
TV Episodes
TV Episode groups
Find
Find by ID
This endpoint allows you to find data by external IDs.
GET
/
find
/
{external_id}
Copy
curl --request GET \
--url https://api.themoviedb.org/3/find/%7B{external_id}%7D \
--header 'Authorization: Bearer <token>'
Copy
{
"movie_results": [
{
"adult": false,
"backdrop_path": "/euYIwmwkmz95mnXvufEmbL6ovhZ.jpg",
"genre_ids": [
28,
12,
36
],
"id": 558449,
"media_type": "movie",
"original_language": "en",
"original_title": "Gladiator II",
"overview": "Years after witnessing the death of the revered hero Maximus at the hands of his uncle, Lucius is forced to enter the Colosseum after his home is conquered by the tyrannical Emperors who now lead Rome with an iron fist. With rage in his heart and the future of the Empire at stake, Lucius must look to his past to find strength and honor to return the glory of Rome to its people.",
"popularity": 900.089,
"poster_path": "/2cxhvwyEwRlysAmRH4iodkvo0z5.jpg",
"release_date": "2024-11-05",
"title": "Gladiator II",
"video": false,
"vote_average": 6.7,
"vote_count": 1106
}
],
"person_results": [],
"tv_episode_results": [],
"tv_results": [],
"tv_season_results": []
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Find by ID
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/find/%7B{external_id}%7D \
--header 'Authorization: Bearer <token>'
Copy
{
"movie_results": [
{
"adult": false,
"backdrop_path": "/euYIwmwkmz95mnXvufEmbL6ovhZ.jpg",
"genre_ids": [
28,
12,
36
],
"id": 558449,
"media_type": "movie",
"original_language": "en",
"original_title": "Gladiator II",
"overview": "Years after witnessing the death of the revered hero Maximus at the hands of his uncle, Lucius is forced to enter the Colosseum after his home is conquered by the tyrannical Emperors who now lead Rome with an iron fist. With rage in his heart and the future of the Empire at stake, Lucius must look to his past to find strength and honor to return the glory of Rome to its people.",
"popularity": 900.089,
"poster_path": "/2cxhvwyEwRlysAmRH4iodkvo0z5.jpg",
"release_date": "2024-11-05",
"title": "Gladiator II",
"video": false,
"vote_average": 6.7,
"vote_count": 1106
}
],
"person_results": [],
"tv_episode_results": [],
"tv_results": [],
"tv_season_results": []
}
Assistant
Responses are generated using AI and may contain mistakes.