Valuation Light

This endpoint is not generally available. For questions please contact sales .
POST /valuations/properties_light

The property light endpoint returns a fast valuation for a property with specific characteristics. It only returns responses for addresses we could geocode with high confidence. Alternatively you can provide the coordinates yourself.

Example use-cases:

  • Give a user a first valuation of their property in seconds
  • Generate leads by letting a user value their property

Request

curl -X POST 'https://quis.de/api/v2/valuations/properties_light?api_key=<YOU-API-KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
    "dealType": "sale",
    "property": {
      "propertyType": {
        "type": "house",
        "subtype": "house_one_family"
      },
      "location": {
        "address": {
          "street": "Gasstraße",
          "houseNumber": "10",
          "postCode": "22761",
          "city": "Hamburg"
        }
      },
      "livingArea": 500.25,
      "landArea": 1200.5,
      "buildingYear": 1900,
      "condition": "good",
      "quality": "good"
    }
  }'
FieldDescriptionTypeRemarks
dealTypeDeal type of the propertyenumsale
propertyCharasteristics of the propertyPropertyLight

PropertyLight

Some fields are marked as required for different property types. However, those could also be passed for other property types to improve the valuation.

FieldDescriptionTypeRemarks
propertyTypeType of the propertyPropertyType
locationLocation of the propertyLocation
livingAreaLiving area of the propertyfloatRequired for house, apartment,apartment_building
plausible values between 15m² and 200m² for apartmentand between 40m² and 450m² for house
landAreaLand area of the propertyfloatRequired for house, apartment_building, plot
plausible values between 50m² and 1000
buildingYearBuilding year of the propertyintegerRequired for house
plausible values between 1800 and current year
conditionCondition of the propertyConditionRequired for house
qualityQuality of the interior of the propertyQualityRequired for house

Response

{
  "value": 1234567.89,
  "currency": "EUR",
  "confidence": "medium",
  "meta": {
    "url": "https://quis.de/geo/53.56238135,9.91097785903008",
    "version": "2.5.0"
  }
}
FieldDescriptionTypeRemarks
valueEstimated market value of the propertyfloat
currencyCurrency of the valuationCurrency
confidenceConfidence of the valuationConfidence
metaMeta information of the APIMeta

Confidence

poor, medium, high