---
title: "Gets person details by id"
method: GET
path: "/v1/person/{id}"
tags: ["Person"]
deprecated: true
---

# Gets person details by id

`GET /v1/person/{id}`

> **Deprecated.**

Retrieve detailed person information by Whitepages person ID.

This endpoint accepts a valid Whitepages person ID in the path parameter
and returns the complete person record if the ID exists in our data.

## Path parameters

- `id` string, required — Valid Person ID in format: P followed by 10 alphanumeric characters

## Response `200`

Person details retrieved successfully

- PersonResponseDto — V1 response model for the person endpoint.
  - `id` string, nullable, required — Unique identifier for the person
  - `name` string, required — Full name of the person
  - `aliases` string[], required — List of aliases for the person
  - `is_dead` boolean, required — Whether the person is deceased
  - `owned_properties` OwnedProperty[], required — List of properties owned by the person
    - `id` string, required
    - `address` string, required
  - `phones` PhoneNumber[], required — List of phone numbers, ordered by strength
    - `number` string, required
    - `type` 'mobile' | 'landline' | 'voip' | 'tollfree' | 'unknown', required — Enumeration of supported phone number types.
    - `score` integer, nullable, required — Confidence score 0-100 showing how strongly this phone is linked to the person. Higher scores mean a stronger match.
  - `date_of_birth` string, nullable, required — Date of birth in ISO format (YYYY-MM-DD)
  - `linkedin_url` string, nullable, required — LinkedIn profile URL for the person
  - `company_name` string, nullable, required — Current or most recent company name
  - `job_title` string, nullable, required — Current or most recent job title
  - `relatives` Relative[], required — List of relatives associated with the person
    - `id` string, nullable, required — Unique identifier for the relative
    - `name` string, required — Full name of the relative
  - `current_addresses` PersonAddress[], required — List of current residential addresses
    - `id` string, nullable, required
    - `address` string, required
    - `latlong` LatLong — Latitude and longitude coordinates.
      - `lat` number, required — Latitude coordinate
      - `lng` number, required — Longitude coordinate
    - `score` integer, nullable — Confidence score 0-100 showing how strongly this address is linked to the person.
  - `historic_addresses` PersonAddress[], required — List of historic residential addresses
    - `id` string, nullable, required
    - `address` string, required
    - `latlong` LatLong — Latitude and longitude coordinates.
      - `lat` number, required — Latitude coordinate
      - `lng` number, required — Longitude coordinate
    - `score` integer, nullable — Confidence score 0-100 showing how strongly this address is linked to the person.
  - `emails` string[], required — List of email addresses associated with the person

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Content
- `429` — Too Many Requests
- `500` — Internal Server Error

---

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