Property Ownership

The Mashvisor database contains historical data on property owners' contact information, demographics, lifestyle, interests, financials, and estimated household income. Use these endpoints to retrieve owner data by property (parcel, MLS id, or address) or by name and location.

The Ownership Objects

Mashvisor database contains historical data on property owners' contact information, demographics, lifestyle, interests, financials, and estimated household income.

The Contact Object:

{
  "status": "success",
  "content": {
    "id": 9087,
    "first_name": "Samantha",
    "last_name": "Reed",
    "email_address": "[email protected]",
    "phone_number": "(415) 555-8234",
    "line_type": "Mobile",
    "address": "123 Market St",
    "city": "San Francisco",
    "state": "CA",
    "zip_code": "94103",
    "created_at": "2022-04-20T10:15:30.000Z",
    "updated_at": "2024-10-05T18:42:11.000Z"
  }
}

Owner Data Dictionary

AttributeDefinitionPossible Returns
First NameOwner first nameString
Last NameOwner last nameString
Phone NumberPhone number, including area codeInteger
Line TypeLandline or MobileString
Email AddressOwner email addressString
AddressStreet addressString
CityCity nameString
state*State abbreviationString
Zip CodeZip codeInteger
DOBMonth and year of person's birthString
Age RangeAge range of the personString
EthnicityEthnicity of the personString
Single ParentIs single parent presence in householdString
Senior Adult HouseholdYes or nullString
Young Adult HouseholdYes or nullString
Business OwnerBusiness owner; Accountant, Builder, Director, etc.String
LanguagePrimary languageString
ReligionPerson's religionString
Number of ChildrenChildren within the householdInteger
Presence of ChildrenYes or nullString
EducationHighest level of educationString
OccupationIndustry of occupationString
GenderMale or FemaleString
Marital StatusSingle or MarriedString
Own/RentOwn or rent householdString
Social Presence IndicatorWhether the person has an account on social networks or not, Yes or nullString
MagazinesIf there's a match, the title will be listedString
TechnologyIf there's a match, the title will be listedString
Dieting and WellnessIf there's a match, the title will be listedString
ExerciseIf there's a match, the title will be listedString
DIY Home ImprovementIf there's a match, the title will be listedString
JewelryIf there's a match, the title will be listedString
Mail Order BuyerIf there's a match, the title will be listedString
Membership ClubsIf there's a match, the title will be listedString
Online EducationIf there's a match, the title will be listedString
Spectator SportsIf there's a match, the title will be listedString
Outdoor SportsIf there's a match, the title will be listedString
InvestingIf there's a match, the title will be listedString
BooksIf there's a match, the title will be listedString
Political DonorIf there's a match, the title will be listedString
Hobbies and CraftsIf there's a match, the title will be listedString
CosmeticsIf there's a match, the title will be listedString
TravelIf there's a match, the title will be listedString
Charitable DonationsIf there's a match, the title will be listedString
Arts and AntiquesIf there's a match, the title will be listedString
Pet OwnerIf there's a match, the title will be listedString
CookingIf there's a match, the title will be listedString
DIY Auto workIf there's a match, the title will be listedString
Health and BeautyIf there's a match, the title will be listedString
ParentingIf there's a match, the title will be listedString
MusicIf there's a match, the title will be listedString
Film and MoviesIf there's a match, the title will be listedString
Self ImprovementIf there's a match, the title will be listedString
Womens ApparelYes or nullString
Est. Household IncomeEstimated household incomeString
Length of ResidenceLength of residenceString
Home Purchase DateEstimated date of home purchaseDate
Est. Home Purchase PriceEstimated price of home purchaseString
Dwelling TypeSingle family or multi-familyString
Auto yearYear of automobileInteger
Number of credit linesNumber of lines of creditInteger
Auto makeMake of automobileString
Credit card holderYes or nullString
Auto modelModel of automobileString
Est. Home ValueEstimated home valueString
Auto editionEdition of automobileString
Est. Net WorthEstimated net worthString
Gas credit card holderYes or nullString
Upscale card holderYes or nullString
Wealth ScoreMeasure of wealth, 0 - 100Integer

GET/v1.1/client/owner/contact

Get Contact Info

Retrieves contact details for a single property owner. Identify the property by one of: parcel_number, mls_id, or address + city + state + zip_code.

Query parameters

  • Name
    parcel_number
    Type
    string
    Description

    Property parcel or APN.

  • Name
    mls_id
    Type
    string
    Description

    Property MLS id.

  • Name
    address
    Type
    string
    Description

    Property street address.

  • Name
    city
    Type
    string
    Description

    Property city.

  • Name
    state
    Type
    string
    Description

    Property state. Required.

  • Name
    zip_code
    Type
    string
    Description

    Property zip code.

Request

GET
/v1.1/client/owner/contact
curl -G "https://api.mashvisor.com/v1.1/client/owner/contact" \
  -d "mls_id=FC314771" \
  -d "state=FL" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "status": "success",
  "content": {
    "id": 3640095,
    "first_name": "John",
    "last_name": "Smith",
    "email_address": null,
    "phone_number": "3488811111",
    "line_type": "Mobile",
    "address": "7 SEDGWICK TRL",
    "city": "Palm Coast",
    "state": "FL",
    "zip_code": "32164",
    "created_at": "2025-12-30T11:15:24.000Z",
    "updated_at": "2026-01-20T10:54:11.000Z"
  }
}

GET/v1.1/client/owner/demographics

Get Demographics

Retrieves the property owners' demographics when matching on a full name, phone number, email address, or on a complete mailing address.

Query parameters

  • Name
    first_name
    Type
    string
    Description

    First name.

  • Name
    last_name
    Type
    string
    Description

    Last name.

  • Name
    phone_number
    Type
    string
    Description

    Person phone number.

  • Name
    email_address
    Type
    string
    Description

    Person email address.

  • Name
    address
    Type
    string
    Description

    Property street address.

  • Name
    zip_code
    Type
    string
    Description

    Property zip code.

  • Name
    city
    Type
    string
    Description

    Property city.

  • Name
    state
    Type
    string
    Description

    Property state. Required.

Request

GET
/v1.1/client/owner/demographics
curl -G "https://api.mashvisor.com/v1.1/client/owner/demographics" \
  -d "state=FL" \
  -d "first_name=JUSTINA" \
  -d "last_name=NIN" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "status": "success",
  "content": {
    "dob": "193709",
    "age_range": "85-95",
    "ethnicity": null,
    "single_parent": null,
    "senior_adult_household": "YES",
    "young_adult_household": null,
    "business_owner": null,
    "language": "English",
    "religion": "Buddhist",
    "number_of_children": null,
    "presence_of_children": null,
    "education": null,
    "occupation": "Other",
    "gender": "Female",
    "marital_status": "Married",
    "owner_renter": null,
    "social_presence_indicator": null
  }
}

GET/v1.1/client/owner/lifeint

Get Lifestyle and Interests

Retrieves the property owners' lifestyle and interests when matching on a full name, phone number, email address, or on a complete mailing address.

Query parameters

  • Name
    first_name
    Type
    string
    Description

    First name.

  • Name
    last_name
    Type
    string
    Description

    Last name.

  • Name
    phone_number
    Type
    string
    Description

    Person phone number.

  • Name
    email_address
    Type
    string
    Description

    Person email address.

  • Name
    address
    Type
    string
    Description

    Property street address.

  • Name
    zip_code
    Type
    string
    Description

    Property zip code.

  • Name
    city
    Type
    string
    Description

    Property city.

  • Name
    state
    Type
    string
    Description

    Property state. Required.

Request

GET
/v1.1/client/owner/lifeint
curl -G "https://api.mashvisor.com/v1.1/client/owner/lifeint" \
  -d "state=FL" \
  -d "first_name=JUSTINA" \
  -d "last_name=NIN" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "status": "success",
  "content": {
    "magazines": "YES",
    "technology": "YES",
    "dieting_and_wellness": null,
    "exercise": "YES",
    "diy_home_improvement": null,
    "jewelry": null,
    "mail_order_buyer": "YES",
    "membership_clubs": null,
    "online_education": null,
    "spectator_sports": null,
    "outdoor_sports": null,
    "investing": "YES",
    "books": "YES",
    "political_donor": null,
    "hobbies_and_crafts": null,
    "cosmetics": null,
    "travel": "YES",
    "charitable_donations": null,
    "arts_and_antiques": "YES",
    "pet_owner": "YES",
    "cooking": null,
    "diy_auto_work": null,
    "health_and_beauty": null,
    "parenting": null,
    "music": null,
    "film_and_movies": null,
    "self_improvement": null,
    "womens_apparel": "YES"
  }
}

GET/v1.1/client/owner/finhouse

Get Financials, Household Incomes

Retrieves property owners' financials, household income, and wealth score when matching on a full name, phone number, email address, or on a complete mailing address.

Query parameters

  • Name
    first_name
    Type
    string
    Description

    First name.

  • Name
    last_name
    Type
    string
    Description

    Last name.

  • Name
    phone_number
    Type
    string
    Description

    Person phone number.

  • Name
    email_address
    Type
    string
    Description

    Person email address.

  • Name
    address
    Type
    string
    Description

    Property street address.

  • Name
    zip_code
    Type
    string
    Description

    Property zip code.

  • Name
    city
    Type
    string
    Description

    Property city.

  • Name
    state
    Type
    string
    Description

    Property state. Required.

Request

GET
/v1.1/client/owner/finhouse
curl -G "https://api.mashvisor.com/v1.1/client/owner/finhouse" \
  -d "state=FL" \
  -d "first_name=JUSTINA" \
  -d "last_name=NIN" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "status": "success",
  "content": {
    "est_household_income": "$100,000-149,999",
    "length_of_residence": "11 - 15 years",
    "home_purchase_date": null,
    "est_home_purchase_price": null,
    "dwelling_type": "Single Family Dwelling Unit",
    "auto_year": null,
    "number_of_credit_lines": "1",
    "auto_make": null,
    "credit_card_holder": "YES",
    "auto_model": null,
    "est_home_value": "$500,000-749,999",
    "auto_edition": null,
    "est_net_worth": "> $499,999",
    "gas_credit_card_holder": "YES",
    "upscale_card_holder": "YES",
    "wealth_score": null
  }
}

Was this page helpful?