How much can you build, and how much is used?
The zoning plans that cover a property, and how much of the permitted utilization has already been built, in two calls. Status separates an adopted plan from a proposal under consideration.
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
- Two GET calls
- Plan and utilization
- Kartverket data
- Updated periodically
ℹ️ The endpoint responds once Placepoint API has launched. The contract below is final; the Tenant API already responds.
From property to plan and utilization
The calls answer two questions at once: which zoning plans apply to the property, and how much of the permitted utilization has already been built. Developers use it to screen sites quickly by remaining potential before ordering a full zoning analysis, estate agents to document building limits in a sales prospectus, and municipalities to check their own plan data against Placepoint's copy.
The plan list shows status, purpose and adoption date per plan, with the municipality number and links to the plan documents where they exist. A property can sit under several plan levels at the same time: an older zoning plan and a newer municipal master plan can apply in parallel until one is revoked, and a plan under consideration can sit alongside the adopted plan that still applies until a decision is made. The status field separates these, so you avoid reading a proposed plan as if it were already binding.
The utilization shows the permitted utilization rate as a percentage of built-up area and square metres of usable floor area, what has actually been built, and how much is left. The basis field says which plan the figures come from, so a difference between permitted and built area can be traced back to the right document rather than taken for granted. That makes the calculation verifiable in the same way as a manual review of plan maps and provisions, only without the review itself.
The plan documents are available as PDFs through signed download links, valid for 15 minutes from the moment the call returns them: zoning provisions, plan descriptions and other attachments registered on the plan.
Two questions, one response
Which zoning plans apply, and how much of the permitted utilization has already been built, without ordering a full zoning analysis.Status separates proposals from adopted plans
Thestatusfield separates an adopted plan from one under consideration, so you avoid reading a proposal as if it were already binding.Plan documents as signed links
Zoning provisions and plan descriptions come as PDFs through signed download links, valid for 15 minutes from the moment the call returns them.
Fields that actually tell you something
The zoning plans that cover the property.
/properties/{country}/{cadastreId}/zoning-planscurl -X GET "https://data.placepoint.no/properties/NO/0301-207-76-0-0/zoning-plans" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"items": [
{
"planId": "S-5028",
"name": "Bjorvika, felt B13",
"status": "ADOPTED",
"purpose": "Bolig og forretning",
"adoptedDate": "2011-06-15",
"municipality": {
"code": "0301",
"name": "Oslo"
},
"documents": [
{
"id": "doc_9931a",
"kind": "ZONING_PLAN",
"title": "Reguleringsbestemmelser S-5028",
"publishedDate": "2011-06-20",
"downloadUrl": "https://data.placepoint.no/files/doc_9931a?sig=ab12cd34ef56&exp=1893456000",
"mediaType": "application/pdf"
}
]
}
]
}
Permitted and built utilization rate.
/properties/{country}/{cadastreId}/utilizationcurl -X GET "https://data.placepoint.no/properties/NO/0301-207-76-0-0/utilization" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"allowedBya": 60,
"allowedBraM2": 9200,
"builtBraM2": 8400,
"remainingBraM2": 800,
"basis": "Regulert i S-5028, felt B13"
}
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; both calls only need the country code and the matrikkelnummer.Use the response
Use the plan list to document building limits in a sales prospectus, and the utilization figures to screen sites by remaining potential.
Data and sources
The zoning plans come from Kartverket's nationwide copy of the municipalities' zoning plans, updated periodically through Geonorge. The utilization figures are calculated by Placepoint from the plan's provisions and the matrikkel building data, and are updated when either of the two changes.
See also
Questions and answers
How fresh is the data?
What does the basis field mean?
basis shows which plan the utilization figures come from, so a difference between permitted and built area can be traced to the right document.