Skip to main content
Beta! Dokumentasjonen er automatisk generert. Informasjonen kan være ufullstendig og inneholde feil, spesielt skjermbilder og videoer. Se Om hjelpesidene. Vi vil veldig gjerne ha innspill: Kontakt oss via «Fant du det du lette etter?» nederst, i chatten nede til høyre eller på support@placepoint.no – vi svarer så fort vi kan!

How tall is the building?

A single building's footprint as GeoJSON, with height in metres and floor count in the properties, ready to be raised as a simple 3D volume without a full IFC file.

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
  • GeoJSON
  • Height and floor count
  • Updated continuously

ℹ️ The endpoint responds once Placepoint API has launched. The contract below is final; the Tenant API already responds.

From building number to footprint

The call tells you exactly where a single building stands and how tall it is, not just the property's overall boundary. Developers building their own 3D visualisations need a footprint and height per building to raise a simple volume model, insurers need roof area and volume for damage calculations, and municipalities need the same geometry that sits in their own FKB register to compare against Placepoint's copy.

The answer is a GeoJSON object where geometry is the building's footprint as a Polygon, and properties is filled with heightM (height in metres) and floors (number of storeys), unlike a property boundary where the same fields are empty, see Plot boundaries. The building is fetched with a buildingNumber from the property's building list, not from the building alone, so a building that has been demolished or no longer exists on the property returns 404.

Footprint and height are enough for a quick massing study before anyone has drawn an actual 3D model: ground area times height gives a volume estimate, and the floor count separates a tall building with a few large storeys from one with many small ones. It is a quick starting point for early-stage design, before a detailed model is imported into 3D-Designer.

  • Footprint and height in the same object

    heightM and floors fill the properties where a property boundary has empty fields, see Plot boundaries.
  • Enough for a quick massing study

    Ground area times height gives a volume estimate before a detailed model is ordered or imported into 3D-Designer.
  • Building number from the building list

    buildingNumber is taken from the property's building list, not from the building alone, so a demolished building returns a clean 404 rather than an empty object.

Fields that actually tell you something

One GET call with a matrikkel number and building number gives you footprint and height. The fields below are the ones that decide what you can build on.

GET/properties/{country}/{cadastreId}/buildings/{buildingNumber}/footprint
curl -X GET "https://data.placepoint.no/properties/NO/0301-207-76-0-0/buildings/1/footprint" \
-H "Authorization: Bearer $TOKEN"

svar · 200

{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
10.75628,
59.90745
],
[
10.75635,
59.90745
],
[
10.75635,
59.90755
],
[
10.75628,
59.90755
],
[
10.75628,
59.90745
]
]
]
},
"properties": {
"heightM": 42.5,
"floors": 12
}
}

Scope: properties.readTeknisk referanse og Try-it

Vis alle felt (3)
FeltTypeBeskrivelse
typestringAlways "Feature".
geometryobjectGeoJSON geometry object.
propertiesobjectFeature properties. A building footprint carries heightM (number, meters) and floors (integer); a property boundary leaves this empty.

The call requires the same scope, properties.read, as the rest of the property calls.

Three steps to your first answer

  1. Log in with GitHub

    One click, under a minute, no payment card. The key comes back to this page.
  2. Call the endpoint

    The curl above fills in with your key once you are logged in. The call needs a matrikkel number and building number, taken from the property's building list.
  3. Apply the answer

    Use geometry for the volume model and heightM/floors to scale it before a detailed model is imported into 3D-Designer.

Data and sources

Footprint and height come from the matrikkel and FKB at Kartverket, updated continuously through Geonorge.

See also

Questions and answers

Which coordinate system does the footprint come in?
WGS84, the same system Plot boundaries uses, ready for a map library without a separate conversion.
Do you cover all municipalities?
Not yet. The footprint and height data is not yet available for all municipalities, and a building in a kommune without coverage returns 404.
How fresh is the data?
Footprint and height come from the matrikkel and FKB at Kartverket, updated continuously through Geonorge.
Is this a complete building model?
No. It is a quick starting point for early-stage design, without facades or internal subdivision. A detailed model is ordered or imported separately in 3D-Designer.
Beta! Dokumentasjonen er automatisk generert. Informasjonen kan være ufullstendig og inneholde feil, spesielt skjermbilder og videoer. Se Om hjelpesidene. Vi vil veldig gjerne ha innspill: Kontakt oss via «Fant du det du lette etter?» nederst, i chatten nede til høyre eller på support@placepoint.no – vi svarer så fort vi kan!