How is it going, really?
Submitted annual accounts for a company, newest first: revenue, operating profit, equity and change from the previous year, without downloading a set of accounts by hand.
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 selskap: Eksempel Eiendom AS
- Trial key with GitHub in under a minute
- One GET call
- NOK and SEK
- Brønnøysundregistrene-verified
- Updated every night
ℹ️ The endpoint responds once Placepoint API has launched. The contract below is final; the Tenant API already responds.
From organisation number to key figures
The call tells you how a company is actually doing, year by year. Banks use the accounting figures to assess a counterparty before a credit decision, agents to check whether a property company can absorb a purchase, and analysts to follow the development across several years without downloading each set of annual accounts by hand.
Every submitted set of accounts comes with revenue, operating profit, net result, equity, total assets and the average number of employees in the accounting year, in the company's reporting currency: NOK for Norwegian companies, SEK for Swedish ones. yoy works out the change in revenue and net result from the previous year, in percentage points, so you do not have to fetch two years and calculate it yourself.
The list is sorted newest year first, so the most recent figure is always items[0].
Change from the previous year, already calculated
yoy.revenuePctandyoy.netResultPctgive the change in percentage points directly in the response, instead of fetching several years and working out the difference yourself.Several years in one list
All submitted accounting years come in the same call, newest first, so a trend over time does not need one lookup per year.The right currency without conversion
The amounts come in the company's own reporting currency, NOK or SEK, with the currency code on each amount. No hidden conversion to verify.
Fields that actually tell you something
One GET call on the company's scheme and id gives you all submitted accounting years. The fields below are the ones that decide what you can read out of each year.
/companies/{scheme}/{id}/financial-statementscurl -X GET "https://data.placepoint.no/companies/0192/987654321/financial-statements" \
-H "Authorization: Bearer $TOKEN"
svar · 200
{
"items": [
{
"year": 2025,
"currency": "NOK",
"revenue": {
"amount": "45000000.00",
"currency": "NOK"
},
"operatingResult": {
"amount": "6200000.00",
"currency": "NOK"
},
"netResult": {
"amount": "4100000.00",
"currency": "NOK"
},
"equity": {
"amount": "18500000.00",
"currency": "NOK"
},
"totalAssets": {
"amount": "92000000.00",
"currency": "NOK"
},
"employees": 12,
"operatingResultBeforeDepreciation": {
"amount": "8100000.00",
"currency": "NOK"
},
"liabilities": {
"amount": "73500000.00",
"currency": "NOK"
},
"profitMarginPct": 9.1,
"announcedDate": "2026-05-28",
"isConsolidated": false,
"yoy": {
"revenuePct": 5.4,
"netResultPct": -2.1
}
}
]
}
The amounts are decimal numbers as strings, for example "45000000.00", so you avoid rounding errors from floating point in further processing.
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. The call only needs the scheme and the organisation number you already have from the company lookup.Use the response
Useitems[0]for the latest known year, or list the full history for a trend in credit assessment or portfolio monitoring.
Data and sources
Norwegian accounts come from Regnskapsregisteret at Brønnøysundregistrene, updated every night. Swedish accounts are verified against the Bolagsverket register via Combify.
See also
Questions and answers
How fresh is the data?
Which currency do the amounts come in?
currency field sits on each individual amount, not just on the accounts as a whole.Why is a year missing from the list?
Does it work in Sweden?
0007 and the Swedish organisationsnummer, and the call responds with the same set of fields, in SEK, verified against the Bolagsverket register via Combify.