---
title: "Get property details by address"
method: GET
path: "/v1/property/"
tags: ["Property"]
deprecated: true
---

# Get property details by address

`GET /v1/property/`

> **Deprecated.**

Retrieve property information based on the provided query parameters.

This endpoint accepts a property query request and returns the matching
property details if found within Whitepages data.

## Query parameters

- `street` string, required — 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.
- `zip` string, nullable

## Response `200`

Property data retrieved successfully

- PropertyResponseDto — Response model for the property endpoint.
  - `id` string, nullable, required — Unique identifier for the property
  - `property_address` FullAddress, required — Address information for a property.
    - `id` string, nullable, required
    - `full_address` string, required
  - `owners` PropertyPersonResponseDto[], required — List of owners of the property
    - `id` string, nullable, required — Unique identifier for the person
    - `name` string, required — Full name of the person
    - `current_addresses` FullAddress[], required — List of current residential addresses
      - `id` string, nullable, required
      - `full_address` string, required
    - `phones` PhoneNumber[], required — List of phone numbers associated with the person, sorted by confidence score from highest to lowest
      - `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.
    - `emails` string[], required — List of email addresses associated with the person
  - `residents` PropertyPersonResponseDto[], required — List of residents of the property
    - `id` string, nullable, required — Unique identifier for the person
    - `name` string, required — Full name of the person
    - `current_addresses` FullAddress[], required — List of current residential addresses
      - `id` string, nullable, required
      - `full_address` string, required
    - `phones` PhoneNumber[], required — List of phone numbers associated with the person, sorted by confidence score from highest to lowest
      - `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.
    - `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)
