This endpoint returns an energy efficiency indication for the provided parameters. As this is a synchronous endpoint, the result will be available immediately and returned in the response. Important: Setle does not take any responsibility with regard to the accuracy of this indication.
POST /calculations?calculation_type="ENERGY_EFFICIENCY"
{
"year_built": "number",
"eco_facilities": "string[]",
"estate_roof_type": "string",
"habitable_space_m2": "number",
"outer_wall_insulation_type": "string",
"roof_insulation_type": "string",
"window_type": "string",
"ventilation_type": "string",
"heating_device": "string",
"ground_floor_type": "string",
"ground_floor_insulation_type": "string",
"estate_type": "string",
"sanitary_heating_device": "string",
"heating_type": "string"
}
{
"id": "string",
"calculation_status": "string",
"calculation_type": "string",
"metadata": {}
}
201 Created
This endpoint can be used to fetch a list of all calculations that are visible to you.
GET /calculations
[
{
"id": "string",
"calculation_status": "string",
"calculation_type": "string",
"metadata": {}
}
]
200 OK
This endpoint returns more information about a specific calculation.
GET /calculations/{calculation_id}
{
"id": "string",
"calculation_status": "string",
"calculation_type": "string",
"metadata": {}
}
200 OK