Authentication, input and response
Determine the estimated current or potential NTA 8800 energy label
POST
https://api.altum.ai/energylabel
Headers
x-api-key*
string
Unique API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)
Content-Type
string
application/json
Request Body
post_code*
String
1234AB
house_number*
Number
1
house_addition
String
A
inner_surface_area
Number
100
build_year
Number
2001
house_type
Number
current house-type: '2 onder 1 kap' = 1, 'hoekwoning' = 2, 'tussenwoning' = 3, 'vrijstaand' = 4 or 'appartment' = 5
solarpanel_watt_peak
Number
current solarpanel watt peak performance per m2
watt_panels
Boolean
assume solar_panels input is in W (0) or m2 (1). Default = 1
inhabitants
Integer
number of people living in the house
{
"Output": {
"post_code": "2771DS",
"house_number": 87,
"house_addition": null,
"build_year": 1961,
"inner_surface_area": 151,
"house_type": "vrijstaand",
"installation": 4,
"wall_insulation": 2,
"roof_insulation": 2,
"floor_insulation": 2,
"living_room_windows": 2,
"ventilation": 1,
"bedroom_windows": 2,
"shower": 0,
"solar_panels": 15,
"solarpanel_watt_peak": 300,
"CO2": 3084,
"definitive_energy_label": "C",
"definitive_energy_label_type": "NEN7120",
"definitive_energy_label_validity_date": "2030-12",
"current_estimated_energy_label": "B",
"current_estimated_BENG1_score": 146,
"current_estimated_BENG2_score": 167,
"estimated_gas_usage": 3108,
"estimated_energy_usage": 760
}
}
Determine the estimated current or potential NTA 8800 energy label
POST
https://api.altum.ai/energylabel/bag
Use BAG_id as alternative to post_code, house_number and house_addition. All other inputs and outputs are similar.
Headers
x-api-key*
string
API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)
Content-Type
string
application/json
Request Body
bag_id*
string
16 digits BAG_ID
inner_surface_area
Number
100
build_year
Number
2001
house_type
Number
current house-type: '2 onder 1 kap' = 1, 'hoekwoning' = 2, 'tussenwoning' = 3, 'vrijstaand' = 4 or 'appartment' = 5
solarpanel_watt_peak
Number
current solarpanel watt peak performance per m2
watt_panels
Boolean
assume solar_panels input is in W (0) or m2 (1). Default = 1
inhabitants
Integer
number of people living in the house
{
"Output": {
"post_code": "2771DS",
"house_number": 87,
"house_addition": null,
"build_year": 1961,
"inner_surface_area": 151,
"house_type": "vrijstaand",
"installation": 4,
"wall_insulation": 2,
"roof_insulation": 2,
"floor_insulation": 2,
"living_room_windows": 2,
"ventilation": 1,
"bedroom_windows": 2,
"shower": 0,
"solar_panels": 15,
"solarpanel_watt_peak": 300,
"CO2": 3084,
"definitive_energy_label": "C",
"definitive_energy_label_type": "NEN7120",
"definitive_energy_label_validity_date": "2030-12",
"current_estimated_energy_label": "B",
"current_estimated_BENG2_score": 167,
"estimated_gas_usage": 3108,
"estimated_energy_usage": 760
}
}
Request body
Example requests
{
"post_code": "4709BM",
"house_number": 1,
"house_addition": "g",
"installation": 1,
"wall_insulation": 3,
"roof_insulation": 2,
"floor_insulation": 2,
"living_room_windows": 3
}
{
"bag_id": "0637010000264937",
"installation": 1,
"wall_insulation": 3,
"roof_insulation": 2,
"floor_insulation": 2,
"living_room_windows": 3
}
Last updated