Owner Based Searches


Absentee Owner Searches

{
  "size": 100,
  "absentee_owner": true
}

In State Owner Searches

{
  "size": 100,
  "in_state_owner": true,
  "state": "VA"
}

Out of State Owner Searches

{
  "size": 100,
  "out_of_state_owner": true,
  "city": "Virginia Beach",
  "state": "VA"
}

Years Owned Searches

{
  "size": 100,
  "years_owned_min": 5,
  "years_owned_max": 10
}
  • corporate_owned [bool]
  • trust_owned [bool]
  • individual_owned [bool]

Owner Mailing Address Searches

The following query filters for properties in Phoenix where the owner's mailing address does reside within the city of Phoenix:

{
  "city": "Phoenix",
  "state": "AZ",
  "mail_city": "Phoenix",
  "mail_state": "AZ"
}

The following query filters for properties in Phoenix where the owner's mailing address does not reside within the city of Phoenix:

{
  "city": "Phoenix",
  "state": "AZ",
  "exclude": [
    { "mail_city": "Phoenix", "mail_state": "AZ" }
  ]
}