Construction Types

"construction" - property search request field

For a full list of the possible values you can search using the "construction" input field, go here: https://developer.realestateapi.com/reference/construction-types-1


Specify a single construction type:

{
  "city": "Arlington",
  "state": "VA",
  "construction": "Steel Frame"
}

Specify that building must match one of the following construction types:

{
  "city": "Arlington",
  "state": "VA",
  "and": [
    {
    	"or": [
        { "construction": "Brick" },
        { "construction": "Log" }
      ]
    }
  ]
}