- adresseID
- adgangsAdresseID
- vurderingsEjendomID
- vurderingsaar
- juridiskKategori
- juridiskUnderkategori
- propertyValue
- groundValue
- twoHousingUnits
- address
- roadName
- houseNumber
- door
- floor
- townName
- zipcode
- postDistrict
- municipalityNumber
- propertyNumber
- isParentProperty,
- taxCalculation.propertyTax
- taxCalculation.groundTax
- taxCalculation.totalAddressTax,
curl --request POST \
--url https://api-fs.vurderingsportalen.dk/preliminaryproperties/_search \
--header 'Content-Type: application/json' \
--header 'User-Agent: insomnia/2023.5.8' \
--data '{
"size": 5000,
"query": {
"bool": {
"filter": [
{
"term": {
"zipcode": 4000
}
},
{
"term": {
"roadName.keyword": "Vor Frue Hovedgade"
}
}
]
}
}
}
'