get_property_value
Retrieve automated property value estimates with comparable properties using property details like address, bedrooms, and square footage.
Instructions
Get automated property value estimates with comparable properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | Property address for valuation | |
bathrooms | No | Number of bathrooms | |
bedrooms | No | Number of bedrooms | |
latitude | No | Property latitude coordinate | |
longitude | No | Property longitude coordinate | |
propertyId | No | Property ID for valuation | |
propertyType | No | Property type for valuation | |
squareFootage | No | Property square footage |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Property address for valuation",
"type": "string"
},
"bathrooms": {
"description": "Number of bathrooms",
"maximum": 10,
"minimum": 0,
"type": "number"
},
"bedrooms": {
"description": "Number of bedrooms",
"maximum": 10,
"minimum": 0,
"type": "number"
},
"latitude": {
"description": "Property latitude coordinate",
"type": "number"
},
"longitude": {
"description": "Property longitude coordinate",
"type": "number"
},
"propertyId": {
"description": "Property ID for valuation",
"type": "string"
},
"propertyType": {
"description": "Property type for valuation",
"type": "string"
},
"squareFootage": {
"description": "Property square footage",
"type": "number"
}
},
"type": "object"
}