How energy efficient is the building?
The energy certificates issued for the buildings on a property: an energy rating from A to G, a heating colour and the validity period. Norwegian certificates from Enova, Swedish energideklarationer from Boverket, in the same response.
Nøkkelen virker i dag på Leietaker-API og dagens Data API; Placepoint API godtar samme nøkkel når det lanseres.
Prøv med et ekte bygg: Oslo S, Jernbanetorget 1
- Trial key with GitHub in under a minute
- One GET call
- A to G rating
- Enova and Boverket data
- Norway and Sweden
ℹ️ The endpoint responds once Placepoint API has launched. The contract below is final; the Tenant API already responds.
From building to energy certificate
The call tells you how energy efficient the buildings on a property are, and whether the certificate is still valid. Managers use it for ESG reporting across a portfolio, banks use it to price green loans against the EU taxonomy, and developers use it to decide which buildings need upgrading first, without having to collect certificates building by building before setting priorities.
Without the call you have to look up each building separately, either on energimerking.no or in the property panel. Here all the certificates for the property's buildings come in one response, marked with the building they apply to, the rating from the energy certificate (A best to G worst) and a colour code for the heating source. A property with several buildings can have a different rating for each building, and certificates are issued and renewed independently of each other, so two buildings on the same plot can have very different validity dates.
Norwegian certificates come from Enova's register, Swedish energideklarationer from Boverket. The source field shows which of the two a certificate comes from, and the issuedDate and validToDate fields show whether the certificate needs renewing soon, which is mandatory when selling or letting both homes and commercial buildings.
The heatingGrade field is a separate colour code for the heating source itself, independent of the energy rating: a building with a heat pump or district heating scores better here than one with purely electric heating, even though both can have the same letter rating. Together the two fields give you a quicker picture of a building than the rating alone, and they are useful when an investor compares upgrade costs across a portfolio with different heating histories.
All the buildings in one response
Without the call each building has to be looked up separately, either on energimerking.no or in the property panel. Here all the certificates for the property's buildings come in one response, marked with the building they apply to.Heating colour alongside the rating
heatingGradescores the heating source itself independently of the letter rating, so a building with a heat pump or district heating stands out from one with purely electric heating.Norwegian and Swedish source in the same field
Thesourcefield shows whether the certificate comes from Enova or Boverket, so you do not need to know in advance which country and register a building belongs to.
Fields that actually tell you something
One GET call on the property returns the energy certificates for all the buildings on it.
/properties/{country}/{cadastreId}/energy-certificatescurl -X GET "https://data.placepoint.no/properties/NO/0301-207-76-0-0/energy-certificates" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"items": [
{
"buildingNumber": "1",
"label": "C",
"heatingGrade": "YELLOW",
"issuedDate": "2021-05-10",
"validToDate": "2031-05-10",
"source": "ENOVA"
}
]
}
The issuedDate and validToDate fields show whether the certificate needs renewing soon, which is mandatory when selling or letting both homes and commercial buildings.
Three steps to your first response
Log in with GitHub
One click, under a minute, no payment card. The key comes back to this page.Call the endpoint
Replace$TOKENin the curl above with your key; the call only needs the country code and the matrikkelnummer.Use the response
Use the rating and the heating colour to decide which buildings in the portfolio need upgrading first, or for ESG reporting across several properties.
Data and sources
Norwegian energy certificates come from Enova, updated continuously. Swedish energideklarationer come from Boverket via Combify. Both registers are public, but the call combines them per property so that you do not need to know in advance which country and register a given building belongs to.
See also
Questions and answers
How fresh is the data?
Why do two buildings on the same property have different ratings?
Does it work in Sweden?
source field so that you can see which register the certificate comes from.