---
title: "Search for property by address"
method: GET
path: "/v2/property/"
tags: ["Property V2"]
---

# Search for property by address

`GET /v2/property/`

Search for property by address parameters.

Returns basic property information including property_id, address, owner,
and resident details. For comprehensive property details including physical
characteristics, tax assessments, and mortgage history, use the returned
property_id with the "Get property details by ID" endpoint
(/v2/property/{property_id}).

## Query parameters

- `street` string, nullable — Street address including number and name
- `city` string, nullable — 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' — 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 — 5

## Response `200`

Successful Response

- DetailResponseDtoPropertyV2Dto
  - `result` PropertyV2Dto, required — Property information for search results.
    - `property_id` string, required — Unique property identifier
    - `apn` string, nullable — Assessor's Parcel Number
    - `property_address` PropertyAddressDto, required — Property address information.
      - `full_address` string, required — Complete formatted address string
      - `line1` string, required — Street address line (house number and street)
      - `city` string, required — City name
      - `state` string, required — Two-letter state code
      - `zip` string, required — 5-digit ZIP code
      - `house` string, required — House or building number
      - `street` string, required — Street name
      - `street_type` string, nullable — Street suffix (St, Ave, Blvd, etc.)
      - `county` string, nullable — County name
    - `mailing_address` PropertyAddressDto — Property address information.
      - `full_address` string, required — Complete formatted address string
      - `line1` string, required — Street address line (house number and street)
      - `city` string, required — City name
      - `state` string, required — Two-letter state code
      - `zip` string, required — 5-digit ZIP code
      - `house` string, required — House or building number
      - `street` string, required — Street name
      - `street_type` string, nullable — Street suffix (St, Ave, Blvd, etc.)
      - `county` string, nullable — County name
    - `geolocation` GeolocationDto — Geographic coordinates.
      - `lat` number, required — Latitude coordinate
      - `lng` number, required — Longitude coordinate
    - `ownership_info` OwnershipInfoDto — Ownership information for search results.
      - `owner_type` string, nullable — Type of ownership (individual, corporate, trust)
      - `business_owners` BusinessOwnerDto[] — Business entities that own the property
        - `name` string, required — Business entity name
      - `person_owners` PersonOwnerDto[] — Individuals who own the property
        - `id` string, required — Unique person identifier
        - `name` string, required — Full name of the property owner
        - `current_addresses` AddressDto[] — Current residential addresses
          - `address_id` string, required — Unique address identifier
          - `full_address` string, required — Complete formatted address string
          - `city` string, required — City name
          - `state` string, required — Two-letter state code
          - `line1` string, required — Street address line (house number and street)
          - `zip` string, required — 5-digit ZIP code
        - `phones` PersonPhoneDto[] — Phone numbers associated with the owner
          - `number` string, required — Phone number in E.164 or national format
          - `type` 'Unknown' | 'Mobile' | 'Landline' | 'VOIP' | 'TollFree', required — Phone line type (mobile, landline, voip)
        - `emails` PersonEmailDto[] — Email addresses associated with the owner
          - `email` string, required — Email address
    - `residents` ResidentDto[] — Current residents at the property
      - `id` string, required — Unique person identifier
      - `name` string, required — Full name of the resident
      - `current_addresses` AddressDto[] — Current residential addresses
        - `address_id` string, required — Unique address identifier
        - `full_address` string, required — Complete formatted address string
        - `city` string, required — City name
        - `state` string, required — Two-letter state code
        - `line1` string, required — Street address line (house number and street)
        - `zip` string, required — 5-digit ZIP code
      - `phones` PersonPhoneDto[] — Phone numbers associated with the resident
        - `number` string, required — Phone number in E.164 or national format
        - `type` 'Unknown' | 'Mobile' | 'Landline' | 'VOIP' | 'TollFree', required — Phone line type (mobile, landline, voip)
      - `emails` PersonEmailDto[] — Email addresses associated with the resident
        - `email` string, required — Email address

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Content
- `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)
