GET
/
3
/
person
/
{person_id}
/
external_ids
curl --request GET \
  --url https://api.themoviedb.org/3/person/{person_id}/external_ids \
  --header 'Authorization: Bearer <token>'
{
  "facebook_id": "WillSmith",
  "freebase_id": "/en/will_smith",
  "freebase_mid": "/m/0147dk",
  "id": 2888,
  "imdb_id": "nm0000226",
  "instagram_id": "willsmith",
  "tiktok_id": "willsmith",
  "tvrage_id": 9542,
  "twitter_id": "",
  "wikidata_id": "Q40096",
  "youtube_id": "WillSmith"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

person_id
string
required

This refers to a unique identifier assigned to an individual within a database.

Example:

""

Query Parameters

language
string

Specifies the language in which the response should be returned.

Example:

"en-US"

Response

200 - application/json

external ids

The response is of type object.