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
Find
Find By External ID
This endpoint allows you to search for all objects in our database, including movies, TV shows, and persons, by an external ID.
GET
/
3
/
find
/
{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": []
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Response
200 - application/json
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": []
}
Assistant
Responses are generated using AI and may contain mistakes.