v2

latestOpenAPI 3.0.3Proprietary2026-07-26232599.0 KB
Person

Get person details

Get detailed information about a person including biographical data and known titles. Person IDs in Watchmode always start with 7 followed by the actual ID.

get/person/{person_id}

Path parameters

person_idinteger required
Example:7110004

Watchmode person ID (starts with 7, e.g., 7110004)

Response

Person details

idinteger
full_namestring
first_namestring nullable
last_namestring nullable
tmdb_idinteger nullable
imdb_idstring nullable
main_professionstring nullable
secondary_professionstring nullable
tertiary_professionstring nullable
date_of_birthstring date nullable
date_of_deathstring date nullable
place_of_birthstring nullable
gender'm' | 'f' nullable
known_forinteger[] nullable

Array of title IDs person is known for

relevance_percentilenumber

Popularity percentile (0-100)

Example response

{
  "id": 7110004,
  "full_name": "Brad Pitt",
  "first_name": "Brad",
  "last_name": "Pitt",
  "tmdb_id": 287,
  "imdb_id": "nm0000093",
  "main_profession": "actor",
  "secondary_profession": "producer",
  "tertiary_profession": "soundtrack",
  "date_of_birth": "1963-12-18",
  "place_of_birth": "Shawnee, Oklahoma, USA",
  "gender": "m",
  "known_for": [
    1132806,
    1336708,
    1183315
  ],
  "relevance_percentile": 100
}