search_properties
Find rental and sale properties by filtering location, bedrooms, bathrooms, property type, and other key criteria to match specific housing requirements.
Instructions
Search for properties with basic property information (default: 15, max: 50 for free tier) including city, state, bedrooms, bathrooms, square footage, lot size, and year built. Note: Price data may not be available for all properties.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bathrooms | No | Number of bathrooms (e.g., 1, 1.5, 2) | |
bedrooms | No | Number of bedrooms (e.g., 1, 2, 3) | |
city | No | City name for property search (e.g., 'Austin', 'New York') | |
limit | No | Maximum number of properties to return (default: 15, max: 50 for free tier) | |
propertyType | No | Property type (e.g., 'Single Family', 'Condo', 'Townhouse') | |
state | No | State abbreviation (e.g., 'TX', 'CA', 'NY') | |
zipCode | No | ZIP code for location-based search (e.g., '78705', '90210') |
Input Schema (JSON Schema)
{
"properties": {
"bathrooms": {
"description": "Number of bathrooms (e.g., 1, 1.5, 2)",
"maximum": 10,
"minimum": 0,
"type": "number"
},
"bedrooms": {
"description": "Number of bedrooms (e.g., 1, 2, 3)",
"maximum": 10,
"minimum": 0,
"type": "number"
},
"city": {
"description": "City name for property search (e.g., 'Austin', 'New York')",
"type": "string"
},
"limit": {
"default": 15,
"description": "Maximum number of properties to return (default: 15, max: 50 for free tier)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"propertyType": {
"description": "Property type (e.g., 'Single Family', 'Condo', 'Townhouse')",
"type": "string"
},
"state": {
"description": "State abbreviation (e.g., 'TX', 'CA', 'NY')",
"type": "string"
},
"zipCode": {
"description": "ZIP code for location-based search (e.g., '78705', '90210')",
"type": "string"
}
},
"type": "object"
}