Home Value Estimate
All APIs
Home Value Estimate
Get a home value estimate using street address, city, state, and zip code
GETv1
Authentication
All API requests require an API key to be included in the x-authkey header.
How to get your API Key
- Visit your API Keys page in the dashboard.
- Locate the active subscription for the API product you wish to use.
- Copy the key from the API Key field.
Note: You must have an active subscription to use an API key.
// Example Header
x-authkey: YOUR_API_KEY
Endpoint
GET /home-value-estimateParameters
| Name | Type | Required |
|---|---|---|
| street | STRING | Required |
| city | STRING | Required |
| state | STRING | Required |
| zip | STRING | Required |
Code Examples
Sample Response
{
"data": {
"location": {
"zip": "07032",
"city": "KEARNY",
"state": "NJ",
"coordinates": {
"lat": 40.766725,
"lng": -74.140787
},
"address_full": "422 DAVIS AVE"
},
"valuation": {
"currency": "USD",
"range_low": 370400,
"range_high": 532800,
"estimated_value": 451100
},
"property_details": {
"beds": 3,
"sqft": "",
"baths": 2,
"year_built": "",
"property_type": "House"
}
},
"status": "success"
}