Skip to main content
GET
/
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>'
{
  "id": 550,
  "freebase_mid": "/m/02r6vrc",
  "freebase_id": "/en/jennifer_todd",
  "imdb_id": "nm0865189",
  "tvrage_id": null,
  "wikidata_id": "Q1611265",
  "facebook_id": null,
  "instagram_id": null,
  "tiktok_id": null,
  "twitter_id": null,
  "youtube_id": null
}

We currently support the following external sources for person records:
SourceSupported?
Facebook
IMDb
Instagram
TikTok
Twitter
Wikidata
YouTube

Authorizations

Authorization
string
header
required

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

Path Parameters

person_id
integer
required

The ID of a person

Response

200 - application/json

Successful

id
integer

A unique identifier.

freebase_mid
string

A unique identifier for the entity in the Freebase database.

freebase_id
string

A string identifier for the entity in the Freebase knowledge graph.

imdb_id
string

A unique identifier for the entity in the Internet Movie Database (IMDb).

tvrage_id
integer

A unique identifier for the entity in TVRage.

wikidata_id
string

A unique identifier for the entity in Wikidata.

facebook_id
string

A unique identifier for the entity on Facebook.

instagram_id
string

A unique identifier for the entity on Instagram.

tiktok_id
string

A unique identifier for the entity on TikTok.

twitter_id
string

A unique identifier for the entity on Twitter.

youtube_id
string

A unique identifier for the entity on YouTube.