GET
/
3
/
person
/
{person_id}
/
external_ids
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

facebook_id
string
Example:

"WillSmith"

freebase_id
string
Example:

"/en/will_smith"

freebase_mid
string
Example:

"/m/0147dk"

id
number
Example:

2888

imdb_id
string
Example:

"nm0000226"

instagram_id
string
Example:

"willsmith"

tiktok_id
string
Example:

"willsmith"

tvrage_id
number
Example:

9542

twitter_id
string
Example:

""

wikidata_id
string
Example:

"Q40096"

youtube_id
string
Example:

"WillSmith"