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

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

`GET /v2/person/`

Retrieve person information with match scores and enriched emails.

Raises
------
StrictMatchWithFuzzyMatchingError
    If ``strict_match`` and ``include_fuzzy_matching`` are both
    set to true — the two flags are semantically contradictory.

## Query parameters

- `phone` string, nullable — Phone number to search for
- `email` string, nullable — Email address to search for
- `name` string, nullable — Full name or partial name match
- `first_name` string, nullable — First name. Cannot be used with 'name'.
- `middle_name` string, nullable — Middle name. Cannot be used with 'name'.
- `last_name` string, nullable — Last name. Cannot be used with 'name'.
- `street` string, nullable — Street address including number and 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
- `min_age` integer, nullable — Minimum age (18-65)
- `max_age` integer, nullable — Maximum age (18-65)
- `radius` number, nullable — Search radius in miles
- `include_fuzzy_matching` boolean, nullable — Enable fuzzy name matching to broaden search results
- `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.
- `page` integer — Page number (1-indexed)
- `page_size` integer — Number of results per page

## Response `200`

Person data retrieved successfully

- PersonSearchV2ResponseDto — Search response containing results and pagination metadata.
  - `results` PersonSearchResultDto[], required
  - `metadata` PaginationMetadataDto, required — Pagination metadata returned with every search response.
    - `result_count` integer, required — Total number of results matching the query
    - `page` integer, required — Current page number
    - `page_size` integer, required — Number of results per page

## 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)
