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

x-api-key
string
header
required

Body

application/json
habitation
object
required

Habitation characteristics of the property

location
object
required

Location details of the property

type
enum<string>
required

Type of the property

Available options:
CLASS_HOUSE,
CLASS_FLAT
offer
object
required

Offer information of the property

land
object

Land details of the property

Response

400
application/json
error
object
required

Error object

Was this page helpful?