get_rent_estimates
Estimate monthly rental prices for properties using location details, property characteristics, and market data to determine fair market rent values.
Instructions
Get long-term rent estimates with comparable rental properties. This tool helps you estimate monthly rental prices for properties based on location, property characteristics, and market data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | Full property address (e.g., '1011 W 23rd St, Apt 101, Austin, TX 78705') | |
bathrooms | No | Number of bathrooms (e.g., 1, 1.5, 2) | |
bedrooms | No | Number of bedrooms (e.g., 1, 2, 3) | |
latitude | No | Property latitude coordinate (e.g., 30.287007) | |
longitude | No | Property longitude coordinate (e.g., -97.748941) | |
propertyId | No | Unique property identifier from Rentcast database (e.g., '12345') | |
propertyType | No | Type of property (e.g., 'Apartment', 'House', 'Condo', 'Townhouse') | |
squareFootage | No | Property size in square feet (e.g., 450, 1200, 2000) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Full property address (e.g., '1011 W 23rd St, Apt 101, Austin, TX 78705')",
"type": "string"
},
"bathrooms": {
"description": "Number of bathrooms (e.g., 1, 1.5, 2)",
"type": "number"
},
"bedrooms": {
"description": "Number of bedrooms (e.g., 1, 2, 3)",
"type": "number"
},
"latitude": {
"description": "Property latitude coordinate (e.g., 30.287007)",
"type": "number"
},
"longitude": {
"description": "Property longitude coordinate (e.g., -97.748941)",
"type": "number"
},
"propertyId": {
"description": "Unique property identifier from Rentcast database (e.g., '12345')",
"type": "string"
},
"propertyType": {
"description": "Type of property (e.g., 'Apartment', 'House', 'Condo', 'Townhouse')",
"type": "string"
},
"squareFootage": {
"description": "Property size in square feet (e.g., 450, 1200, 2000)",
"type": "number"
}
},
"type": "object"
}