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!

Which cooperative owns the building?

The cooperative that owns the building stock behind a share-based dwelling: Organization Number, Common Debt and the latest annual accounts in one call, the same information a Broker otherwise gets from the sales prospectus or the managing agent.

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
  • Borettsregisteret
  • Norway and Sweden
  • Updated continuously

ℹ️ The endpoint responds once the Placepoint API has launched. The contract below is final; the Tenant API already responds.

From property to housing cooperative

The call tells you which cooperative actually owns the building stock behind a share-based dwelling, not just who lives there. Brokers use it to fill in the prospectus fields on Common Debt and managing agent without calling the housing association, banks use it to assess the real debt burden on a share before granting a mortgage, and managers use it to monitor Common Debt across a portfolio holding both cooperative flats and sectioned joint ownerships.

The Answer comes with the cooperative's Organization Number and name, legal form (borettslag, sameie, boligaksjeselskap or, for Swedish entities, bostadsrättsförening via Combify), the number of units in the cooperative, secured Common Debt in kroner, and a structured latestStatement object from the most recent annual accounts filed: financial year, operating income, operating profit, profit for the year, equity, total assets, number of employees and the percentage change from the year before.

The Organization Number comes with the same identifier scheme (ISO 6523) that the rest of the API uses for companies: taken from Brønnøysundregistrene for a Norwegian cooperative, and from the Swedish company register via Combify for a bostadsrättsförening.

Common Debt is the individual share's portion of the cooperative's total loans, secured against the cooperative's property rather than against the individual share. Two homes with the same price tag on the deposit can therefore cost widely different amounts in practice, depending on how much Common Debt rests on that particular share.

  • Common Debt in kroner, not in prospectus language

    sharedDebt.amount gives the share's portion of the cooperative's total loans directly, the same figure a Broker otherwise gets from the prospectus or the managing agent by phone.
  • The latest annual accounts, structured

    latestStatement gives operating income, operating profit and equity along with the change from the year before, without downloading a set of accounts manually.
  • Norway and Sweden in the same object shape

    kind separates borettslag, sameie and boligaksjeselskap from a Swedish bostadsrättsförening, retrieved via Combify.

Fields that actually tell you something

One GET call with the country code and the matrikkel number of the dwelling unit returns the cooperative behind the home. The fields below are the ones that decide what you can fill in the prospectus without a phone call to the managing agent.

GET/properties/{country}/{cadastreId}/housing-cooperative
curl -X GET "https://data.placepoint.no/properties/NO/0301-207-76-0-0/housing-cooperative" \
-H "Authorization: Bearer $TOKEN"

svar · 200

{
"organization": {
"organizationIdentifier": {
"scheme": "0192",
"id": "998877665"
},
"name": "Sameiet Dronning Eufemias gate 16",
"country": "NO"
},
"kind": "SAMEIE",
"unitCount": 96,
"sharedDebt": {
"amount": "3450000.00",
"currency": "NOK"
},
"latestStatement": {
"year": 2025,
"currency": "NOK"
}
}

Scope: properties.readTeknisk referanse og Try-it

Vis alle felt (39)
FeltTypeBeskrivelse
organization.organizationIdentifier.schemestringISO 6523 ICD code.
organization.organizationIdentifier.idstringRegister identifier.
organization.namestringRegistered name.
organization.countrystringISO 3166-1 alpha-2.
organization.links[].hrefstringAbsolute URL.
organization.links[].titlestringHuman label.
kindstringLegal form.
unitCountintegerNumber of units in the cooperative.
sharedDebt.amountstringDecimal string, e.g. "12500000.00".
sharedDebt.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.yearintegerAccounting year.
latestStatement.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.revenue.amountstringDecimal string, e.g. "12500000.00".
latestStatement.revenue.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.operatingResult.amountstringDecimal string, e.g. "12500000.00".
latestStatement.operatingResult.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.operatingResultBeforeDepreciation.amountstringDecimal string, e.g. "12500000.00".
latestStatement.operatingResultBeforeDepreciation.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.liabilities.amountstringDecimal string, e.g. "12500000.00".
latestStatement.liabilities.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.netResult.amountstringDecimal string, e.g. "12500000.00".
latestStatement.netResult.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.equity.amountstringDecimal string, e.g. "12500000.00".
latestStatement.equity.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.totalAssets.amountstringDecimal string, e.g. "12500000.00".
latestStatement.totalAssets.currencystringISO 4217, e.g. NOK or SEK.
latestStatement.employeesintegerAverage number of employees during the year.
latestStatement.profitMarginPctnumberNet result as a percentage of revenue.
latestStatement.announcedDatestringWhen the statement was filed.
latestStatement.isConsolidatedbooleanWhether the figures are group figures rather than the parent company alone.
latestStatement.yoy.revenuePctnumberChange in revenue versus the prior year, in percentage points.
latestStatement.yoy.netResultPctnumberChange in net result versus the prior year, in percentage points.
units[]string[]The property's units that belong to the cooperative.
documents[].idstringDocument identifier.
documents[].kindstringDocument category. The set grows as new archives are connected; treat an unknown value as OTHER.
documents[].titlestringDocument title.
documents[].publishedDatestringWhen the document was published.
documents[].downloadUrlstringSigned download URL, valid for 15 minutes.
documents[].mediaTypestringIANA media type, e.g. application/pdf.

A property with no organised cooperative, an ordinary freehold home, returns 404: the absence of an Answer is itself the information that the dwelling unit is owned directly, not through a share. unitCount shows how many units the cooperative manages in total, while the individual dwelling units on the property itself are listed separately under Buildings and dwelling units.

Three steps to your first Answer

  1. Log in with GitHub

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

    The curl above fills itself in with your key once you are logged in. The call needs the country code and the matrikkel number of the dwelling unit, which you already have in your portfolio.
  3. Apply the Answer

    Fill the prospectus fields on Common Debt and managing agent directly, or chain the Organization Number on into the accounts lookup for a multi-year history.

Data and sources

The information about the cooperative comes from Borettsregisteret at Kartverket, the accounting figures from Regnskapsregisteret at Brønnøysundregistrene. Swedish bostadsrättsföreningar come via Combify. All three are updated continuously as cooperatives report changes or file new accounts.

See also

Questions and answers

How fresh is the data?
The information about the cooperative comes from Borettsregisteret at Kartverket, updated continuously. The accounting figures are taken from Regnskapsregisteret at Brønnøysundregistrene every night.
What happens for a freehold home?
The call returns 404. The absence of a cooperative is itself the information that the dwelling unit is owned directly, not through a share.
Does it work in Sweden?
Yes, for a Swedish bostadsrättsförening. kind shows the Swedish entity form, and the Organization Number is taken from the Swedish company register via Combify.
Is unitCount the same as the number of dwelling units on the property?
No. unitCount shows how many units the cooperative manages in total, while the dwelling units on the property itself are listed separately under Buildings and dwelling units: a cooperative often manages more buildings than those standing on this particular property.
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!