"and" - Compound Queries Syntax

Sometimes simple flat queries don't cut it. Fully narrow down your searches just the way you want to with our First in Class compound property data querying language.

Ever feel frustrated by a Property Search API that can't give you exactly what you want?

We did too! That's why we've designed a unique way of searching across our Nationwide Property Data Sets.

Just add the "and" field to your Property Search request in order to get more granular with your searches.

Note: All inner "and"-ed clauses must be satisfied, along with at least one of the "or"-ed conditions. There is no limit to the number of "and"/"or" clauses that can be included.

{
  "count": false,
  "size": 10,
  "and": [
    {
      "and": [
        { "absentee_owner": true },
        { "beds_min": 3, "beds_max": 5 },
        { "corporate_owned": true }
      ]
    },
    {
      "or": [
        { "property_type": "LAND" },
        { "property_type": "MOBILE" }
      ]
    }
  ]
}