Who owns the property?
The registered owners recorded on a property, company or person, with ownership share and registration date, the same information the land register extract shows.
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
- Grunnboken
- Scope-controlled privacy
- Updated continuously
ℹ️ The endpoint responds once Placepoint API has launched. The contract below is final; the Tenant API already responds.
From matrikkel number to registered owners
The call tells you who owns the property today. Banks use it to verify a counterparty before a loan, agents to confirm the seller, and managers to keep owner lists up to date across a portfolio without ordering a land register extract for each property.
Company owners come with an organization number and name directly. For personal owners, the name requires the owners.read scope; without that scope the call returns only the year of birth (where it exists), the same restriction the section lookup uses. This is a deliberate limit: the ownership share and the fact that the property has a personal owner are public through Grunnboken, but the name requires a clearer agreement on what it will be used for.
The same information as the land register extract
No manual ordering per property. The call gives you the registered owners directly, with ownership share and registration date.Organization number straight away
Company owners come with an organization number and name in the same response, ready to chain onward into the company lookup.Privacy controlled by scope
Personal owners requireowners.readfor the name; without the scope you get only the year of birth, where it is known.
Fields that actually tell you something
One GET call with the matrikkel number gives you the owner list below.
/properties/{country}/{cadastreId}/ownerscurl -X GET "https://data.placepoint.no/properties/NO/0301-207-76-0-0/owners" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"items": [
{
"kind": "ORGANIZATION",
"organization": {
"organizationIdentifier": {
"scheme": "0192",
"id": "987654321"
},
"name": "Eufemia Eiendom AS",
"country": "NO"
},
"share": {
"numerator": 1,
"denominator": 1
},
"registeredAt": "2019-06-01T00:00:00Z"
}
]
}
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. The call needs a country code and a matrikkel number, the same parameters as the property lookup.Use the response
Use the owner list to verify a counterparty before a loan, or to keep owner lists up to date across the portfolio.
Data and sources
Owner data comes from Grunnboken at Kartverket, updated continuously.
See also
Questions and answers
How fresh is the data?
Does it work in Sweden?
listPropertyOwners takes country=SE in the same way as the other property calls, and Swedish registered owners come through Combify and Lantmäteriet. The same privacy rule applies: private individuals require the owners.read scope for the name, otherwise only the year of birth where it is known.What happens without the owners.read scope?
owners.read scope.What about privacy?
owners.read scope.