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!

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.revenuePct and yoy.netResultPct give 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.

GET/companies/{scheme}/{id}/financial-statements
curl -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
}
}
]
}

Scope: companies.readTeknisk referanse og Try-it

Vis alle felt (22)
FeltTypeBeskrivelse
items[].yearintegerAccounting year.
items[].currencystringISO 4217, e.g. NOK or SEK.
items[].revenue.amountstringDecimal string, e.g. "12500000.00".
items[].revenue.currencystringISO 4217, e.g. NOK or SEK.
items[].operatingResult.amountstringDecimal string, e.g. "12500000.00".
items[].operatingResult.currencystringISO 4217, e.g. NOK or SEK.
items[].operatingResultBeforeDepreciation.amountstringDecimal string, e.g. "12500000.00".
items[].operatingResultBeforeDepreciation.currencystringISO 4217, e.g. NOK or SEK.
items[].liabilities.amountstringDecimal string, e.g. "12500000.00".
items[].liabilities.currencystringISO 4217, e.g. NOK or SEK.
items[].netResult.amountstringDecimal string, e.g. "12500000.00".
items[].netResult.currencystringISO 4217, e.g. NOK or SEK.
items[].equity.amountstringDecimal string, e.g. "12500000.00".
items[].equity.currencystringISO 4217, e.g. NOK or SEK.
items[].totalAssets.amountstringDecimal string, e.g. "12500000.00".
items[].totalAssets.currencystringISO 4217, e.g. NOK or SEK.
items[].employeesintegerAverage number of employees during the year.
items[].profitMarginPctnumberNet result as a percentage of revenue.
items[].announcedDatestringWhen the statement was filed.
items[].isConsolidatedbooleanWhether the figures are group figures rather than the parent company alone.
items[].yoy.revenuePctnumberChange in revenue versus the prior year, in percentage points.
items[].yoy.netResultPctnumberChange in net result versus the prior year, in percentage points.

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

  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 with your key. The call only needs the scheme and the organisation number you already have from the company lookup.
  3. Use the response

    Use items[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?
The accounts are taken from Regnskapsregisteret at Brønnøysundregistrene and updated every night. A newly submitted set of annual accounts is visible in the call the following night.
Which currency do the amounts come in?
The company's own reporting currency: NOK for Norwegian companies, SEK for Swedish ones. The currency field sits on each individual amount, not just on the accounts as a whole.
Why is a year missing from the list?
Only submitted and approved annual accounts are included. A newly founded company may have no accounts for the year it was founded, and a company that is exempt from the filing duty shows fewer years than you expect.
Does it work in Sweden?
Yes. Use scheme 0007 and the Swedish organisationsnummer, and the call responds with the same set of fields, in SEK, verified against the Bolagsverket register via Combify.
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!