Estimation
Lite Property Estimation
Estimate the price of a property based on market data
POST
/
v2
/
protected
/
estimate
/
property
/
lite
curl --request POST \
--url https://api.fluximmo.io/v2/protected/estimate/property/lite \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"habitation": {
"propertyCondition": {
"constructionYear": 123,
"generalConditions": []
},
"roomCount": 2,
"bedroomCount": 1,
"surface": {
"total": 100
},
"characteristics": {
"hasBalcony": true,
"hasCellar": true,
"hasGarage": true,
"hasLift": true,
"hasParking": true,
"hasPool": true,
"hasTerrace": true
},
"climate": {
"epcClimate": "GREENHOUSE_CLASSIFICATION_C",
"epcEnergy": "ENERGY_CLASSIFICATION_C"
},
"features": {
"furniture": null,
"propertyFloor": 1,
"propertyTotalFloor": 1
}
},
"land": {
"surface": 123
},
"location": {
"locationCoordinate": {
"location": [
6.374338,
43.474648
]
}
},
"type": "CLASS_HOUSE",
"offer": {
"type": "OFFER_BUY"
}
}'
{
"error": {
"message": "<string>",
"code": 123
}
}
Authorizations
Body
application/json
Response
400
application/json
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.fluximmo.io/v2/protected/estimate/property/lite \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"habitation": {
"propertyCondition": {
"constructionYear": 123,
"generalConditions": []
},
"roomCount": 2,
"bedroomCount": 1,
"surface": {
"total": 100
},
"characteristics": {
"hasBalcony": true,
"hasCellar": true,
"hasGarage": true,
"hasLift": true,
"hasParking": true,
"hasPool": true,
"hasTerrace": true
},
"climate": {
"epcClimate": "GREENHOUSE_CLASSIFICATION_C",
"epcEnergy": "ENERGY_CLASSIFICATION_C"
},
"features": {
"furniture": null,
"propertyFloor": 1,
"propertyTotalFloor": 1
}
},
"land": {
"surface": 123
},
"location": {
"locationCoordinate": {
"location": [
6.374338,
43.474648
]
}
},
"type": "CLASS_HOUSE",
"offer": {
"type": "OFFER_BUY"
}
}'
{
"error": {
"message": "<string>",
"code": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.