US Rent Estimation
All APIs
US Rent Estimation
GETv1
Authentication
x-authkey: YOUR_API_KEY
Endpoint
GET /rent-estimate/v2Parameters
| Name | Type | Required |
|---|---|---|
| street | STRING | Required |
| city | STRING | Required |
| state | STRING | Required |
| zip | STRING | Required |
Code Examples
Sample Response
{
"data": {
"rent_estimation": {
"estimated_range": {
"max": 2310,
"min": 1910,
"max_per_bedroom": null,
"min_per_bedroom": null
},
"estimated_value": 2110,
"value_per_bedroom": null
},
"property_address": {
"city": "Daphne",
"state": "AL",
"street": "Sable Ct",
"zip_code": "36526",
"full_address": "Sable Ct, Daphne, AL, 36526"
},
"location_coordinates": {
"latitude": 30.5978579,
"longitude": -87.8626249
},
"property_description": {
"bedrooms": null,
"bathrooms": null,
"property_type": null
}
},
"status": "success"
}