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
People
External Ids
This endpoint retrieves a list of external Ids that belong to a person.
The list of supported external sources for a person are Facebook, Instagram, TikTok, Twitter, Wikidata, and YouTube.
GET
/
3
/
person
/
{person_id}
/
external_ids
curl --request GET \
--url https://api.themoviedb.org/3/person/%7B{person_id}%7D/external_ids \
--header 'Authorization: Bearer <token>'
{
"facebook_id": "JasonStatham",
"freebase_id": "/en/jason_statham",
"freebase_mid": "/m/034hyc",
"id": 976,
"imdb_id": "nm0005458",
"instagram_id": "jasonstatham",
"tiktok_id": "",
"tvrage_id": 74770,
"twitter_id": "",
"wikidata_id": "Q169963",
"youtube_id": ""
}
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
.
curl --request GET \
--url https://api.themoviedb.org/3/person/%7B{person_id}%7D/external_ids \
--header 'Authorization: Bearer <token>'
{
"facebook_id": "JasonStatham",
"freebase_id": "/en/jason_statham",
"freebase_mid": "/m/034hyc",
"id": 976,
"imdb_id": "nm0005458",
"instagram_id": "jasonstatham",
"tiktok_id": "",
"tvrage_id": 74770,
"twitter_id": "",
"wikidata_id": "Q169963",
"youtube_id": ""
}
Assistant
Responses are generated using AI and may contain mistakes.