Owner Based Searches

Absentee Owner Searches

let request = {
  size: 100,
  absentee_owner: true
}

In State Owner Searches

let request = {
  size: 100,
  in_state_owner: true
	state: 'VA'
}

Out of State Owner Searches

let request = {
  size: 100,
  out_of_state_owner: true,
	city: 'Virginia Beach',
  state: 'VA'
}

Years Owned Searches

let request = {
 	size: 100,
  years_owned_min: 5,
  years_owned_max: 10
}

Owner Mailing Address Searches

  • the following query would let you filter 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 would let you filter 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"
	]
}