This endpoint allows you to search for all objects in our database, including movies, TV shows, and persons, by an external ID.
curl --request GET \
--url https://api.themoviedb.org/3/find/%7B{external_id}%7D \
--header 'Authorization: Bearer <token>'
{
"movie_results": [],
"person_results": [],
"tv_episode_results": [],
"tv_results": [
{
"adult": false,
"backdrop_path": "/gc8PfyTqzqltKPW3X0cIVUGmagz.jpg",
"first_air_date": "2008-01-20",
"genre_ids": [
18,
80
],
"id": 1396,
"media_type": "tv",
"name": "Breaking Bad",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Breaking Bad",
"overview": "Walter White, a New Mexico chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of only two years left to live. He becomes filled with a sense of fearlessness and an unrelenting desire to secure his family's financial future at any cost as he enters the dangerous world of drugs and crime.",
"popularity": 560.37,
"poster_path": "/ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg",
"vote_average": 8.917,
"vote_count": 14636
}
],
"tv_season_results": []
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Find By External ID
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/find/%7B{external_id}%7D \
--header 'Authorization: Bearer <token>'
{
"movie_results": [],
"person_results": [],
"tv_episode_results": [],
"tv_results": [
{
"adult": false,
"backdrop_path": "/gc8PfyTqzqltKPW3X0cIVUGmagz.jpg",
"first_air_date": "2008-01-20",
"genre_ids": [
18,
80
],
"id": 1396,
"media_type": "tv",
"name": "Breaking Bad",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Breaking Bad",
"overview": "Walter White, a New Mexico chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of only two years left to live. He becomes filled with a sense of fearlessness and an unrelenting desire to secure his family's financial future at any cost as he enters the dangerous world of drugs and crime.",
"popularity": 560.37,
"poster_path": "/ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg",
"vote_average": 8.917,
"vote_count": 14636
}
],
"tv_season_results": []
}