curl --request GET \
--url 'https://api.themoviedb.org/3/person/{{person_id}}/external_ids' \
--header 'Authorization: Bearer <token>'{
"facebook_id": "TomHanks",
"freebase_id": "/en/tom_hanks",
"freebase_mid": "/m/0bxtg",
"id": 31,
"imdb_id": "nm0000158",
"instagram_id": "tomhanks",
"tiktok_id": "tomhanks",
"tvrage_id": 14293,
"twitter_id": "tomhanks",
"wikidata_id": "Q2263",
"youtube_id": null
}This endpoint allows you to get the external ID’s that belong to a person.
curl --request GET \
--url 'https://api.themoviedb.org/3/person/{{person_id}}/external_ids' \
--header 'Authorization: Bearer <token>'{
"facebook_id": "TomHanks",
"freebase_id": "/en/tom_hanks",
"freebase_mid": "/m/0bxtg",
"id": 31,
"imdb_id": "nm0000158",
"instagram_id": "tomhanks",
"tiktok_id": "tomhanks",
"tvrage_id": 14293,
"twitter_id": "tomhanks",
"wikidata_id": "Q2263",
"youtube_id": null
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Fetch external IDs
"TomHanks"
"/en/tom_hanks"
"/m/0bxtg"
31
"nm0000158"
"tomhanks"
"tomhanks"
14293
"tomhanks"
"Q2263"