get_sale_listings
Search for properties currently for sale using location parameters like city, state, or ZIP code to retrieve comprehensive listing information with detailed property data.
Instructions
Get sale listings with comprehensive property information. This tool searches for properties currently for sale.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | No | City for listing search (e.g., 'Austin', 'New York', 'Los Angeles') | |
limit | No | Maximum number of listings to return (default: 15, max: 50 for free tier) | |
state | No | State for listing search (e.g., 'TX', 'NY', 'CA') | |
zipCode | No | ZIP code for listing search (e.g., '78705', '10001', '90210') |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "City for listing search (e.g., 'Austin', 'New York', 'Los Angeles')",
"type": "string"
},
"limit": {
"default": 15,
"description": "Maximum number of listings to return (default: 15, max: 50 for free tier)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"state": {
"description": "State for listing search (e.g., 'TX', 'NY', 'CA')",
"type": "string"
},
"zipCode": {
"description": "ZIP code for listing search (e.g., '78705', '10001', '90210')",
"type": "string"
}
},
"type": "object"
}