Norway issues every legal entity a nine-digit organisation number starting with 8 or 9. The agency in charge is Brønnøysundregistrene, located in the Arctic Circle town of Brønnøysund. Unlike the opaque registries of the English Channel or the Caribbean, Norway publishes this data under an open licence. Pulling it programmatically without getting lost in nested XML arrays or state-run endpoint quirks requires knowing exactly where the boundaries of public data lie.
When tracing assets or verifying a corporate entity in Norway, you deal with two overlapping databases. The first is Enhetsregisteret, the Central Coordinating Register for Legal Entities, which registers every organisation from an AS (limited company) to a local chess club. The second is Foretaksregisteret, the Register of Business Enterprises, which records liability, capital, and signatories for commercial entities.
Through OpenRegistry's MCP server, querying these registers bypasses the stale aggregator caches of legacy paid databases. The raw upstream fields are preserved inside the jurisdiction_data block, giving you the direct statutory truth.
When you call get_company_profile for a Norwegian entity, the response exposes critical forensic fields straight from Brønnøysundregistrene. Look at the jurisdiction_data payload. You will find:
-
registreringsdatoForetaksregisteret: The date the entity became a commercial enterprise. -
konkursdato: The date bankruptcy proceedings were initiated, if applicable. -
vedtektsfestetFormaal: The formal statutory purpose of the company as defined in its articles of association. -
organisasjonsform: The legal structure, such as "AS" (Aksjeselskap) or "NUF" (Norwegian branch of a foreign company).
Norway has a specific corporate form called the NUF (Norskregistrert utenlandsk foretak). This is a Norwegian branch of a foreign enterprise, which is a common structure used by offshore entities to operate in the North Sea oil sector. When querying a NUF via get_company_profile, the jurisdiction_data block contains the field registreringsnummerIHjemland (registration number in the home country). This single field allows investigators to link the Norwegian branch directly back to its origin jurisdiction, whether that is Delaware, the United Kingdom, or Cyprus.
Unlike jurisdictions that hide historic officer changes behind paywalls, Norway's register makes board compositions accessible. When you execute the get_officers tool, you receive structural roles mapped directly to their actual titles: styretsleder (board chair), daglig leder (general manager), and revisor (auditor).
Norway is transparent, but it is not entirely open. You must navigate three distinct legal and technical boundaries.
First, national identity numbers are strictly redacted from public APIs. You can see names and birth years of directors, but never the full unique personal identifier unless you have a statutory right to log in via domestic authentication systems. Second, beneficial ownership tracking has changed. Following the Court of Justice of the European Union (CJEU) ruling on UBO registers, public access to the Register of Beneficial Owners (Registeret for reelle rettighetshavere) has become restricted. While OpenRegistry can retrieve public officer lists via get_officers, the deep AML-gated beneficial owner registers require specific legal credentials. Third, physical copies of filings must be ordered via the registry's webshop for a fee. The raw API endpoints provide metadata and filing dates, but not the physical PDFs of vintage filings.
To trace a suspected Norwegian holding structure, you begin with a search. The search_companies tool accepts either the nine-digit organisation number or a name string:
{
"name": "search_companies",
"arguments": {
"jurisdiction": "NO",
"query": "Equinor"
}
}
Once you have the precise organisation number, you can query the full profile. The get_company_profile tool retrieves the active registration details:
{
"name": "get_company_profile",
"arguments": {
"jurisdiction": "NO",
"registration_number": "923609016"
}
}
To reconstruct the corporate hierarchy and identify who is signing off on transactions, you pull the officer registry. This list maps out the executive and non-executive board:
{
"name": "get_officers",
"arguments": {
"jurisdiction": "NO",
"registration_number": "923609016"
}
}
While the raw PDFs of annual accounts (årsregnskap) are stored in a separate registry, you can still trace the list of filings using list_filings. This tool returns the date and type of each submission, allowing you to see when the company last updated its articles or changed its auditor. A sudden change of an auditor (revisor) or a prolonged delay in submitting the accounts is a classic warning sign.
This direct access changes how cross-border investigations are structured. Instead of waiting for third-party compliance platforms to normalise and upload data weeks after a filing occurs, you can trigger these tools directly inside your terminal or investigative assistant. If a corporate shell points to a Norwegian AS, you can confirm its active status and current board members in less than three seconds. To test these queries without credentials or configuration delays, query the endpoint directly at openregistry.sophymarine.com.
Top comments (0)