---
title: "Search for a person by name, phone number, and address"
method: GET
path: "/v1/person/"
tags: ["Person"]
deprecated: true
---

# Search for a person by name, phone number, and address

`GET /v1/person/`

> **Deprecated.**

Retrieve person information based on the provided query parameters.

This endpoint accepts a person query request and returns full details for
up to the top 15 matching persons from Whitepages data.

## Query parameters

- `phone` string, nullable — Phone number to search for a person by
- `name` string, nullable — Full name, first name, last name, or partial name match for the person
- `first_name` string, nullable — First name of the person. Cannot be used with 'name' parameter.
- `middle_name` string, nullable — Middle name of the person. Cannot be used with 'name' parameter.
- `last_name` string, nullable — Last name of the person. Cannot be used with 'name' parameter.
- `street` string, nullable — Full or partial street address including street number, name
- `city` string, nullable — Full city name
- `state_code` 'AL' | 'AK' | 'AZ' | 'AR' | 'AS' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | 'FL' | 'GA' | 'GU' | 'HI' | 'ID' | 'IL' | 'IN' | 'IA' | 'KS' | 'KY' | 'LA' | 'ME' | 'MD' | 'MA' | 'MI' | 'MN' | 'MS' | 'MO' | 'MT' | 'NE' | 'NV' | 'NH' | 'NJ' | 'NM' | 'NY' | 'NC' | 'ND' | 'MP' | 'OH' | 'OK' | 'OR' | 'PA' | 'PR' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'TT' | 'UT' | 'VT' | 'VA' | 'VI' | 'WA' | 'WV' | 'WI' | 'WY', nullable — Valid US State and Territory codes. This enum contains all valid two-letter codes for US states and territories. Used for parameter validation in API requests.
- `zipcode` string, nullable — Full 5-digit ZIP code
- `include_historical_locations` boolean, nullable — Include historical addresses in search. When false (default), only current addresses are included.
- `min_age` integer, nullable — Minimum age of the person to search for, must be between 18 and 65
- `max_age` integer, nullable — Maximum age of the person to search for, must be between 18 and 65
- `radius` number, nullable — Search radius in miles for distance-based filtering
- `strict_match` boolean, nullable — Suppress automatic broadening. When true, the search does not fall back to fuzzy matching or radius expansion on a zero-result response; the exact query is authoritative.

## Response `200`

Person data retrieved successfully

- PersonResponseDto[]
  - `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
- `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)
