One company, the full picture
Company lookup by organisation number: status, address, employees and links on to properties, roles, shareholders and conglomerate, in one call.
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 company: Eksempel Eiendom AS
- Trial key with GitHub in under a minute
- One GET call
- ISO 6523 identifiers
- Norway and Sweden
- Brønnøysundregistrene-verified
ℹ️ The endpoint responds once Placepoint API has launched. The contract below is final; the Tenant API already responds.
From organisation number to company picture
The call answers who the company is and what it is connected to. Brokers use the answer to check the counterparty before a bid, credit assessors to verify status before an assessment, and portfolio managers to find a company they already know from another context.
The identifier is ISO 6523: scheme 0192 for the Norwegian organisasjonsnummer and 0007 for the Swedish organisationsnummer, with the number itself in id. The same two fields recur across Companies, Roles, Shareholders, Conglomerate, Accounts and Premises, so a company you have looked up once can be used directly in the other calls.
The answer gives status, registration date, NACE industry code, business and postal address and number of employees, plus links to each of the sub-resources the company has.
One number, six calls
The samescheme/idpair recurs in properties, roles, shareholders, conglomerate, accounts and premises. Look up the company once, then use the identifier onward without another lookup round.Status before you go further
statussays whether the company is active, being wound up or deleted, without you having to open a manual register lookup to check it first.Norway and Sweden with the same schema
Norwegian and Swedish companies respond in the same object form. The country is given incountryand in the identifier'sscheme, not as a separate Norwegian and a separate Swedish version of the call.
Fields that actually tell you something
One GET call on scheme and id gives the whole company picture. The fields below are the ones that decide what you can build on.
/companies/{scheme}/{id}curl -X GET "https://data.placepoint.no/companies/0192/987654321" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"organizationIdentifier": {
"scheme": "0192",
"id": "987654321"
},
"name": "Eksempel Eiendom AS",
"country": "NO",
"status": "ACTIVE",
"registeredDate": "2015-03-12",
"naceCode": "68.209",
"naceName": "Utleie av egen eller leid fast eiendom ellers",
"businessAddress": {
"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
}
},
"postalAddress": {
"text": "Postboks 1234 Vika, 0114 Oslo",
"postalCode": "0114",
"postalPlace": "Oslo",
"country": "NO"
},
"employees": 12,
"links": [
{
"href": "https://data.placepoint.no/companies/0192/987654321/properties",
"title": "Properties"
},
{
"href": "https://data.placepoint.no/companies/0192/987654321/roles",
"title": "Roles"
},
{
"href": "https://data.placepoint.no/companies/0192/987654321/shareholders",
"title": "Shareholders"
}
]
}
links points on to properties, roles and shareholders with ready-made URLs, so you do not have to assemble them yourself from the organisation number.
The properties the company controls
The same company, but listed as properties instead: each entry carries the ownership share and the ownership chain down to the company that owns directly, also when ownership runs through intermediate companies.
/companies/{scheme}/{id}/propertiescurl -X GET "https://data.placepoint.no/companies/0192/987654321/properties" \
-H "Authorization: Bearer $TOKEN"
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
}
}
],
"share": {
"numerator": 1,
"denominator": 1
},
"path": [
{
"scheme": "0192",
"id": "987654321"
}
]
}
],
"nextPageToken": "eyJvZmZzZXQiOjF9"
}
Number of employees over time
Registered number of employees month by month, oldest first, with a flag that separates a confirmed monthly count from an interpolated one.
/companies/{scheme}/{id}/employeescurl -X GET "https://data.placepoint.no/companies/0192/987654321/employees" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"items": [
{
"period": "2026-07",
"count": 11,
"observed": true
},
{
"period": "2026-08",
"count": 12,
"observed": true
}
]
}
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 with your key. The call needs the scheme (0192or0007) and the organisation number, no internal ID to look up first.Use the answer
Uselinksto fetch properties, roles or shareholders for the same company, without building the URLs yourself.
Data and sources
Norwegian companies come from Brønnøysundregistrene's Enhetsregister, updated continuously. Swedish companies are verified against Bolagsverket's register via Combify. Addresses are resolved against the matrikkel at Kartverket for Norwegian properties.
See also
Questions and answers
What is scheme, and why is it not just the organisation number?
scheme is the ISO 6523 code for which register the number belongs to: 0192 for the Brønnøysundregistrene organisasjonsnummer, 0007 for the Bolagsverket organisationsnummer. Without it, the call does not know which country applies, and Norwegian and Swedish numbers can in principle overlap.How fresh is the data?
Does it work in Sweden?
0007 and the Swedish organisationsnummer, and the call responds with the same field set as for a Norwegian company.What access is needed beyond companies.read?
companies.read. Personal names in roles and the shareholder list also need owners.read, see Roles and Shareholders.