Skip to content

Valuation Light

POST valuation/property_value_light

Performs a simple valuation of the specified property.

If you would like to perform valuations for multiple properties (in a single call), create time series, or achieve better valuations by taking more parameters into account, consider using the full-fledged Valuation endpoint.

Request#

curl -X POST 'https://api.pricehubble.com/api/v1/valuation/property_value_light' \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer 74126eab0a9048d993bda4b1b55ae074' \
  -d '{
    "dealType": "sale",
    "property": {
        "location": {
            "address": {
                "city": "Zurich",
                "houseNumber": "391",
                "postCode": "8037",
                "street": "Nordstrasse"
            },
            "coordinates": {
                "latitude": 47.3968601,
                "longitude": 8.5153549
            }
        },
        "propertyType": {
            "code": "house"
        },
        "buildingYear": 2000,
        "livingArea": 200.00,
        "landArea": 100.00,
        "condition": "well_maintained"
    },
    "countryCode": "CH"
}'

Example Request (Multi-Family House):#

curl -X POST 'https://api.pricehubble.com/api/v1/valuation/property_value_light' \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer 74126eab0a9048d993bda4b1b55ae074' \
  -d '{
    "dealType": "sale",
    "property": {
        "location": {
            "coordinates": {
                "latitude": 53.56818,
                "longitude": 10.037133
            }
        },
        "propertyType": {
            "code": "multi_family_house"
        },
        "buildingYear": 2000,
        "numberOfUnits": 15,
        "livingArea": 1500.00,
        "landArea": 1000.00,
        "annualRentIncome": 10000,
        "condition": "well_maintained"
    },
    "countryCode": "DE"
}'
Field Description Type Remarks
dealType Deal type of the valuation string Valid values are sale or rent. rent is not accepted for multi_family_house property type code.
property Property description PropertyLight postCode and city are mandatory fields of the address if coordinates are not provided
countryCode ISO country code string In France, sale valuations are supported for the following remote territories: Guadeloupe, Guyane, Martinique and Réunion; any other remote territories and rent valuations are currently not supported.

Response#

{
    "confidence": "medium",
    "currency": "CHF",
    "valueRange": {
        "lower": 1694600,
        "upper": 2156800
    }
}

Example Response (Multi-Family House)#

{
    "confidence": "poor",
    "currency": "EUR",
    "valueRange": {
        "lower": 6108900,
        "upper": 8436100
    }
}
Field Description Type Remarks
confidence Confidence of the valuation string Valid values are poor, medium or good
currency Currency of valueRange Currency
valueRange.lower Estimated lower bound of the property's market value (sale price value if dealType is sale or gross or net rent value if dealType is rent). For JP net rent and for all other countries gross rent is returned integer
valueRange.upper Estimated upper bound of the property's market value (sale price value if dealType is sale or gross or net rent value if dealType is rent). For JP net rent and for all other countries gross rent is returned integer