What do we know about the property?
The cadastre number gives area, addresses, municipality and links on to buildings, owners and transactions, plus bulk lookups for several properties and an overview of the property's sections.
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
- Norway and Sweden
- Kartverket data
- Bulk lookup of up to 100
ℹ️ The endpoint responds once Placepoint API has launched. The contract below is final; the Tenant API already responds.
From cadastre number to property
The property lookup answers what we know about this matrikkelenhet: area, addresses, municipality and property type, plus links on to buildings, owners, tenants and transactions. Banks and agents use it to verify a property before a valuation; developers use it to fetch base data before a deeper analysis.
The bulk lookup answers the same question for a list of cadastre numbers in one call, instead of one call per property. The section list answers how a sectioned property is divided up: the owner sections (eierseksjoner), the co-ownership fraction (sameiebrøk) and who owns each section.
Bulk lookup in one call
Up to 100 cadastre numbers in one call instead of one call per property. AnotFoundlist says which ones gave no match, andIdempotency-Keyreuses the answer for 24 hours on a repeated call.Straight on to the sub-resources
The answer has links on to buildings, owners and tenants, so a system does not have to build the URLs itself.The sections with ownership share
The section list gives the co-ownership fraction and the owner per section, the same information that owner sections otherwise require a manual lookup in Grunnboken for.
Fields that actually tell you something
Property by cadastre number.
/properties/{country}/{cadastreId}curl -X GET "https://data.placepoint.no/properties/NO/0301-207-76-0-0" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"country": "NO",
"cadastreId": "0301-207-76-0-0",
"municipality": {
"code": "0301",
"name": "Oslo"
},
"areaM2": 620,
"plotCount": 1,
"propertyType": "EIERSEKSJON",
"buildingCount": 1,
"sectionCount": 44,
"unitCount": 52,
"totalUsableAreaM2": 26400,
"totalGrossAreaM2": 28900,
"builtOverAreaM2": 2050,
"builtOverAreaPct": 33.1,
"averageFloors": 13,
"taxationValue": {
"amount": "412000000.00",
"currency": "NOK"
},
"establishedDate": "1998-03-11",
"location": {
"lat": 59.9075,
"lon": 10.7563
},
"addresses": [
{
"text": "Dronning Eufemias gate 16, 0191 Oslo",
"streetName": "Dronning Eufemias gate",
"houseNumber": "16",
"postalCode": "0191",
"postalPlace": "Oslo",
"country": "NO",
"cadastreId": "0301-207-76-0-0",
"location": {
"lat": 59.9075,
"lon": 10.7563
}
}
],
"links": [
{
"href": "https://data.placepoint.no/properties/NO/0301-207-76-0-0/sections",
"title": "Sections"
},
{
"href": "https://data.placepoint.no/properties/NO/0301-207-76-0-0/buildings",
"title": "Buildings"
},
{
"href": "https://data.placepoint.no/properties/NO/0301-207-76-0-0/units",
"title": "Units"
}
]
}
Several properties in one call.
/properties/{country}/lookupscurl -X POST "https://data.placepoint.no/properties/NO/lookups" \
-H "Authorization: Bearer $TOKEN" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{"cadastreIds":["0301-207-76-0-0"]}'
svar · 200
{
"items": [
{
"country": "NO",
"cadastreId": "0301-207-76-0-0",
"municipality": {
"code": "0301",
"name": "Oslo"
},
"areaM2": 620,
"plotCount": 1,
"propertyType": "EIERSEKSJON",
"addresses": [
{
"text": "Dronning Eufemias gate 16, 0191 Oslo",
"streetName": "Dronning Eufemias gate",
"houseNumber": "16",
"postalCode": "0191",
"postalPlace": "Oslo",
"country": "NO",
"cadastreId": "0301-207-76-0-0",
"location": {
"lat": 59.9075,
"lon": 10.7563
}
}
],
"links": [
{
"href": "https://data.placepoint.no/properties/NO/0301-207-76-0-0/sections",
"title": "Sections"
},
{
"href": "https://data.placepoint.no/properties/NO/0301-207-76-0-0/buildings",
"title": "Buildings"
},
{
"href": "https://data.placepoint.no/properties/NO/0301-207-76-0-0/units",
"title": "Units"
}
]
}
],
"notFound": []
}
The sections on a property.
/properties/{country}/{cadastreId}/sectionscurl -X GET "https://data.placepoint.no/properties/NO/0301-207-76-0-0/sections" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"items": [
{
"sectionNumber": "15",
"cadastreId": "0301-207-76-0-0",
"share": {
"numerator": 1,
"denominator": 1
},
"owners": [
{
"kind": "ORGANIZATION",
"organization": {
"organizationIdentifier": {
"scheme": "0192",
"id": "987654321"
},
"name": "Eufemia Eiendom AS",
"country": "NO"
},
"share": {
"numerator": 1,
"denominator": 2
},
"registeredAt": "2019-06-01T00:00:00Z"
},
{
"kind": "PERSON",
"person": {
"birthYear": 1978
},
"share": {
"numerator": 1,
"denominator": 2
},
"registeredAt": "2020-01-15T00:00:00Z"
}
],
"useType": "NAERING"
}
]
}
Three steps to your first answer
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 cadastre number, which you already have in your portfolio.Use the answer
Use the links in the answer to fetch buildings, owners or tenants for the same property without a new lookup.
Data and sources
Cadastre data and sections come from Kartverket's matrikkel, updated continuously.
See also
Questions and answers
How fresh is the data?
What do you cover?
Does it work in Sweden?
What does a bulk lookup cost?
properties.read quota, whether it gives a match or ends up in notFound. Idempotency-Key reuses the answer on a repeated call for 24 hours.