POST
/
v1
/
calculation-jobs
/
suggested-renovation-trajectory-calculation
curl --request POST \
  --url https://public-api.setle.app/v1/calculation-jobs/suggested-renovation-trajectory-calculation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "year_built": 2,
  "estate_format": "SEMI_OPEN",
  "habitable_space_m2": 2,
  "roof_type": "INCLINED",
  "inclined_roof_pane_surface": 2,
  "flat_roof_pane_surface": 2,
  "inclined_roof_insulation_type": "NONE",
  "flat_roof_insulation_type": "NONE",
  "attic_usage": "STORAGE",
  "heating_type": "ELECTRIC",
  "heating_device": "DIRECT_ACCUMULATION",
  "sanitary_heating_device": "GAS_BOILER",
  "installation_age": "ZERO_TO_FIVE_YEARS_OLD",
  "has_solar_panels": true,
  "has_solar_boiler": true,
  "ground_floor_surface": 2,
  "basement_type": "NONE",
  "basement_ceiling_surface": 2,
  "basement_ceiling_height": "HIGHER_THAN_120_CM",
  "solid_ground_floor_insulation_type": "NONE",
  "floor_above_basement_insulation_type": "NONE",
  "outer_wall_insulation_type": "NONE",
  "has_cavity_wall": true,
  "cavity_wall_width": "EQUAL_OR_MORE_THAN_5_CM",
  "has_cavity_wall_insulation": true,
  "window_glazing_type": "SINGLE_GLAZING",
  "window_glazing_surface": 2,
  "building_width": 2,
  "building_depth": 2,
  "cornice_height": 2,
  "energy_efficiency_score": 123,
  "street": "<string>",
  "house_number": "<string>",
  "house_number_extra": "<string>",
  "place": "<string>",
  "zip_code": "<string>",
  "country": "BE",
  "price": 2,
  "title": "<string>",
  "description": "<string>",
  "epc_url": "<string>",
  "external_id": "<string>",
  "webhook_url": "<string>"
}'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "external_id": "<string>",
  "deactivated_at": "2023-11-07T05:31:56Z",
  "calculation_job_type": "EPC_DOCUMENT_PROCESSING",
  "calculation_job_status": "NOT_STARTED",
  "metadata": {},
  "estate_id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "expires_at": "2023-11-07T05:31:56Z",
  "published_at": "2023-11-07T05:31:56Z"
}

1. Introduction

The Suggested Renovation Trajectory Calculation API enables users to generate a renovation plan for properties, especially when limited details are available. This API enriches the provided data using external sources and predictive models to return a comprehensive renovation trajectory.


2. Process Overview

The API follows these steps:

  1. Data Enrichment: Enhances incoming property data with additional information from external platforms like Belmap, which provides detailed property measurements using LiDAR datasets.

  2. Prediction Modeling: Utilizes a machine learning model to predict missing property attributes and assess energy performance.

  3. Renovation Trajectory Generation: Generates a suggested renovation plan based on enriched data and model predictions, prioritizing actions that maximize energy efficiency improvements.


3. Business Logic & Data Enrichment

3.1 Belmap Data Enrichment

The API integrates with Belmap, a platform that provides accurate property measurements using LiDAR datasets. If certain data points are missing (e.g., roof area, building width, depth), the API queries Belmap to retrieve them.

3.2 Machine Learning Predictions

A trained ML model refines missing values and predicts energy efficiency scores. The confidence_score in the response indicates how much of the final result is based on direct data vs. predictions.

3.2.1 Confidence Score & Pricing Accuracy

The confidence_score parameter helps users assess the accuracy of the returned results:

Confidence ScoreExpected Price Error (avg)Standard DeviationNotes
< 0.60>20%>30%High error margin, model relied on many assumptions
0.60 - 0.70~15%~13%Moderate accuracy, reasonable estimates
0.70 - 0.80~14%~13%Good accuracy, confidence in most cases
> 0.80~5%~8%Very high accuracy, minimal deviations
  • If Belmap data is available, the expected confidence score is ~78%.
  • Lower scores indicate the API made more assumptions due to missing data.

3.3 Renovation Step Selection Criteria

The suggested renovation trajectory follows a priority-based approach:

  1. Maximizing EPC improvement
  2. Choosing cost-effective solutions when impact is equal
  3. Selecting actions based on subsidy availability

For example:

  • If both roof insulation and full roof renovation yield the same EPC gain, the system chooses insulation since it is cheaper.

4. Implementation Considerations

4.1 Authentication

4.2 Polling Mechanism

Since calculations are asynchronous, clients should poll the status endpoint periodically until the job status changes to FINISHED.

Response Example (Completed Calculation)

{
    "id": "008135aa-448f-48bc-8c31-9bf23601488b",
    "created_at": "2025-02-27T13:51:50.299Z",
    "updated_at": "2025-02-27T13:52:48.751Z",
    "external_id": null,
    "calculation_job_type": "SUGGESTED_RENOVATION_TRAJECTORY_CALCULATION",
    "calculation_job_status": "FINISHED",
    "metadata": {
        "output": {
            "steps": [
                {
                    "type": "ROOF",
                    "items": [
                        {
                            "renovation_component_type": "ROOF_INSULATION",
                            "estimated_cost": 7950,
                            "subsidy_amount": 3976,
                            "estimated_vat_cost": 477,
                            "calculation_attributes": {
                                "ROOF_PANE_SURFACE": {
                                    "value": 158.99586
                                }
                            },
                            "energy_efficiency_indication": {
                                "score": 424,
                                "label": "E"
                            }
                        }
                    ],
                    "priority": 1
                },
                {
                    "type": "OUTSIDE_WALLS",
                    "items": [
                        {
                            "renovation_component_type": "CAVITY_WALL_REFILL",
                            "estimated_cost": 2150,
                            "subsidy_amount": 1075,
                            "estimated_vat_cost": 129,
                            "calculation_attributes": {
                                "FACADE_WIDTH": { "value": 7.22 },
                                "CORNICE_HEIGHT": { "value": 3.18 },
                                "CONSTRUCTION_DEPTH": { "value": 19.34 }
                            },
                            "energy_efficiency_indication": {
                                "score": 210,
                                "label": "C"
                            }
                        }
                    ],
                    "priority": 2
                },
                {
                    "type": "FLOOR",
                    "items": [
                        {
                            "renovation_component_type": "GROUND_FLOOR_INSULATION",
                            "estimated_cost": 5942,
                            "subsidy_amount": 1500,
                            "estimated_vat_cost": 357,
                            "calculation_attributes": {
                                "GROUND_FLOOR_SURFACE": { "value": 139.81 }
                            },
                            "energy_efficiency_indication": {
                                "score": 185,
                                "label": "B"
                            }
                        }
                    ],
                    "priority": 3
                },
                {
                    "type": "OUTSIDE_JOINERY",
                    "items": [
                        {
                            "renovation_component_type": "GLASS_REPLACEMENT",
                            "estimated_cost": 4200,
                            "subsidy_amount": 2100,
                            "estimated_vat_cost": 252,
                            "calculation_attributes": {
                                "SURFACE": { "value": 30 }
                            },
                            "energy_efficiency_indication": {
                                "score": 161,
                                "label": "B"
                            }
                        }
                    ],
                    "priority": 4
                },
                {
                    "type": "TECHNICAL_INSTALLATIONS",
                    "items": [
                        {
                            "renovation_component_type": "HEATING_SANITARY_FULL_ECO",
                            "estimated_cost": 22577,
                            "subsidy_amount": 3250,
                            "estimated_vat_cost": 1354,
                            "calculation_attributes": {
                                "HEATING_TYPE": { "value": "FUEL_OIL" },
                                "GROUND_FLOOR_SURFACE": { "value": 139.81 },
                                "RENOVATION_COMPONENT_TYPE": { "value": "HEATING_SANITARY_FULL_ECO" }
                            },
                            "energy_efficiency_indication": {
                                "score": 107,
                                "label": "B"
                            }
                        }
                    ],
                    "priority": 5
                }
            ],
            "summary": {
                "step_count": 5,
                "estimated_cost": 42819,
                "subsidy_amount": 11901,
                "confidence_score": 0.788,
                "estimated_vat_cost": 2569,
                "energy_efficiency_indication": {
                    "score": 107,
                    "label": "B"
                }
            }
        }
    }
}

5. Frequently Asked Questions (FAQs)

What if the EPC score seems incorrect?

  • Check the confidence_score. A low value indicates the model had to rely heavily on predictions instead of actual data.

Can I speed up the calculation process?

  • No, the processing time depends on background jobs and external data sources.

Final Notes

  • This API is particularly useful for real estate developers and homeowners looking for an automated, data-enriched renovation trajectory.
  • The integration of LiDAR (Belmap) and ML predictions ensures optimal recommendations based on available data.
  • Users are encouraged to cross-check low-confidence results with additional manual data input to improve accuracy.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Body with required input data.
year_built
number
required
Required range: x >= 1
estate_format
enum<string>
required
Available options:
SEMI_OPEN,
OPEN,
CLOSED
habitable_space_m2
number
required
Required range: x >= 1
zip_code
string
required
country
enum<string>
required
Available options:
BE,
NL
roof_type
enum<string>
Available options:
INCLINED,
FLAT,
MIXED
inclined_roof_pane_surface
number
Required range: x >= 1
flat_roof_pane_surface
number
Required range: x >= 1
inclined_roof_insulation_type
enum<string>
Available options:
NONE,
LIGHT,
MODERATE,
STRONG
flat_roof_insulation_type
enum<string>
Available options:
NONE,
LIGHT,
MODERATE,
STRONG
attic_usage
enum<string>
Available options:
STORAGE,
LIVING_SPACE,
NOT_USED
heating_type
enum<string>
Available options:
ELECTRIC,
FUEL_OIL,
GAS,
HEAT_PUMP,
PELLET_FUEL,
WOOD,
NONE
heating_device
enum<string>
Available options:
DIRECT_ACCUMULATION,
CONDENSING_BOILER,
NON_CONDENSING_BOILER,
STOVE,
AIR_AIR_HEAT_PUMP,
AIR_WATER_HEAT_PUMP,
GEOTHERMAL_HEAT_PUMP
sanitary_heating_device
enum<string>
Available options:
GAS_BOILER,
FUEL_OIL_BOILER,
ELECTRIC_BOILER,
HEAT_PUMP_BOILER,
NOT_SEPARATED,
NONE
installation_age
enum<string>
Available options:
ZERO_TO_FIVE_YEARS_OLD,
FIVE_TO_TEN_YEARS_OLD,
OLDER_THAN_TEN_YEARS
has_solar_panels
boolean
has_solar_boiler
boolean
ground_floor_surface
number
Required range: x >= 1
basement_type
enum<string>
Available options:
NONE,
FULL,
PARTIAL,
UNSPECIFIED
basement_ceiling_surface
number
Required range: x >= 1
basement_ceiling_height
enum<string>
Available options:
HIGHER_THAN_120_CM,
LOWER_THAN_120_CM
solid_ground_floor_insulation_type
enum<string>
Available options:
NONE,
LIGHT,
MODERATE,
STRONG
floor_above_basement_insulation_type
enum<string>
Available options:
NONE,
MODERATE,
STRONG
outer_wall_insulation_type
enum<string>
Available options:
NONE,
LIGHT,
MODERATE,
STRONG
has_cavity_wall
boolean
cavity_wall_width
enum<string>
Available options:
EQUAL_OR_MORE_THAN_5_CM,
LESS_THAN_5_CM
has_cavity_wall_insulation
boolean
window_glazing_type
enum<string>
Available options:
SINGLE_GLAZING,
DOUBLE_GLAZING,
HR,
TRIPLE_GLAZING
window_glazing_surface
number
Required range: x >= 1
building_width
number
Required range: x >= 1
building_depth
number
Required range: x >= 1
cornice_height
number
Required range: x >= 1
energy_efficiency_score
number
street
string
house_number
string
house_number_extra
string
place
string
price
number
Required range: x >= 1
title
string
description
string
epc_url
string
external_id
string
webhook_url
string

Response

200
application/json
Successfully processed request.
id
string
required
created_at
string
required
updated_at
string
required
external_id
string
required
deactivated_at
string
required
calculation_job_type
enum<string>
required
Available options:
EPC_DOCUMENT_PROCESSING,
ENERGY_EFFICIENCY_INDICATION,
SUGGESTED_RENOVATION_TRAJECTORY_CALCULATION
calculation_job_status
enum<string>
required
Available options:
NOT_STARTED,
RUNNING,
FINISHED,
FAILED,
STOPPED
metadata
object
required
estate_id
string
required
name
string
required
description
string
required
expires_at
string
required
published_at
string
required