get_random_properties
Retrieve random property data including price history, lot size, and year built for market analysis. Specify location and quantity (up to 50 properties) to generate sample datasets for real estate research.
Instructions
Get random properties with comprehensive info (default: 10, max: 50 for free tier) for market analysis including price history, lot size, and year built
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | No | City for random property selection | |
limit | No | Number of random properties to return (default: 10, max: 50 for free tier) | |
state | No | State for random property selection | |
zipCode | No | ZIP code for random property selection |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "City for random property selection",
"type": "string"
},
"limit": {
"default": 10,
"description": "Number of random properties to return (default: 10, max: 50 for free tier)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"state": {
"description": "State for random property selection",
"type": "string"
},
"zipCode": {
"description": "ZIP code for random property selection",
"type": "string"
}
},
"type": "object"
}