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!

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 require owners.read for 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.

GET/properties/{country}/{cadastreId}/owners
curl -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"
}
]
}

Scope: properties.readTeknisk referanse og Try-it

Vis alle felt (15)
FeltTypeBeskrivelse
items[].kindstringWhich nested object is populated.
items[].person.namestringFull name.
items[].person.birthYearintegerYear of birth.
items[].organization.organizationIdentifier.schemestringISO 6523 ICD code.
items[].organization.organizationIdentifier.idstringRegister identifier.
items[].organization.namestringRegistered name.
items[].organization.countrystringISO 3166-1 alpha-2.
items[].organization.links[].hrefstringAbsolute URL.
items[].organization.links[].titlestringHuman label.
items[].share.numeratorintegerNumerator.
items[].share.denominatorintegerDenominator.
items[].registeredAtstringWhen the register recorded it.
items[].interestTypestringThe interest the grunnbok records, e.g. Hjemmelshaver or Fester.
items[].contactRolestringRegistered contact role, where the party is recorded as a contact rather than a holder.
items[].untilDatestringWhen the interest ended. Absent means the interest is current, which is the only way to tell a former owner from a present one.

Three steps to your first response

  1. Log in with GitHub

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

    Replace $TOKEN in the curl above. The call needs a country code and a matrikkel number, the same parameters as the property lookup.
  3. 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?
Grunnboken at Kartverket is updated continuously.
Does it work in Sweden?
Yes. 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?
Company owners are always shown with an organization number and name. For personal owners, only the year of birth is returned, where it is known; the name requires the owners.read scope.
What about privacy?
The ownership share and the fact that the property has a personal owner are public through Grunnboken. The name requires a more clearly agreed purpose, controlled through the owners.read scope.
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!