get_rental_listings
Search for available rental properties with comprehensive details by location. Find current rental listings using city, state, or ZIP code parameters to access property information for housing searches.
Instructions
Get rental listings with comprehensive property information. This tool searches for properties currently for rent.
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"
}