analyze_market
Generate market statistics and trends for real estate by location, providing rental and sales data analysis to inform property decisions.
Instructions
Get comprehensive market statistics and trends for specific locations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | No | City name for market analysis | |
dataType | No | Type of market data to analyze | All |
state | No | State abbreviation for market analysis | |
zipCode | No | ZIP code for market analysis |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "City name for market analysis",
"type": "string"
},
"dataType": {
"default": "All",
"description": "Type of market data to analyze",
"enum": [
"All",
"Sale",
"Rental"
],
"type": "string"
},
"state": {
"description": "State abbreviation for market analysis",
"type": "string"
},
"zipCode": {
"description": "ZIP code for market analysis",
"type": "string"
}
},
"type": "object"
}