Property Detail

Property Detail returns the full county and public-record profile for one property — ownership, tax, mortgage, lot, and building data. Identify the property by a fully formatted address, by its address parts, by APN and FIPS, or by the id you got back from Property Search.

POST/v2/PropertyDetail

Look up a property

Request attributes

  • Name
    id
    Type
    string
    Description

    The id from a Property Search result. When you pass this, no other field is required.

  • Name
    address
    Type
    string
    Description

    A fully formatted address, e.g. 123 Main St, Arlington, VA 22205. When this is valid, no other field is required.

  • Name
    house
    Type
    string
    Description

    House number. Use with street, city, state, and zip.

  • Name
    street
    Type
    string
    Description

    Street name, e.g. Main St.

  • Name
    unit
    Type
    string
    Description

    Unit number, for apartments and suites.

  • Name
    city
    Type
    string
    Description

    City the property is in.

  • Name
    state
    Type
    string
    Description

    Two-character state code, e.g. VA.

  • Name
    county
    Type
    string
    Description

    County the property is in. Not required for a fully formatted address.

  • Name
    zip
    Type
    string
    Description

    Five-digit ZIP code.

  • Name
    apn
    Type
    string
    Description

    Assessor's parcel number. Useful for land parcels with no house number.

  • Name
    fips
    Type
    string
    Description

    County FIPS code. Pair with apn for an exact parcel lookup.

  • Name
    exact_match
    Type
    boolean
    Description

    Return only exact address matches — disables fuzzy matching.

Request

POST
/v2/PropertyDetail
curl -X POST https://api.realestateapi.com/v2/PropertyDetail \
  -H "x-api-key: $REALESTATEAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address": "1 Rocket Rd, Hawthorne, CA 90250"}'

Was this page helpful?