---
title: "Get person details"
method: GET
path: "/person/{person_id}"
tags: ["Person"]
---

# Get person details

`GET /person/{person_id}`

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.

## Path parameters

- `person_id` integer, required

## Response `200`

Person details

- Person
  - `id` integer
  - `full_name` string
  - `first_name` string, nullable
  - `last_name` string, nullable
  - `tmdb_id` integer, nullable
  - `imdb_id` string, nullable
  - `main_profession` string, nullable
  - `secondary_profession` string, nullable
  - `tertiary_profession` string, nullable
  - `date_of_birth` string, date, nullable
  - `date_of_death` string, date, nullable
  - `place_of_birth` string, nullable
  - `gender` 'm' | 'f', nullable
  - `known_for` integer[], nullable — Array of title IDs person is known for
  - `relevance_percentile` number — Popularity percentile (0-100)

## Other responses

- `401` — Invalid or missing API key
- `404` — Resource not found

---

[API](https://skmtc.dev/watchmode/apis/watchmode-api.md) · [All operations](https://skmtc.dev/watchmode/apis/watchmode-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/watchmode/watchmode-api/revisions/3215d2b959fa/schema)
