Finnish Trade Register extracts still keep the Business ID (y-tunnus) separate from the diary references tied to the filing that created the entry. That split matters when you are checking statutory notice timing under the Finnish Trade Register Act (Kaupparekisterilaki 564/2023), since the filing timestamp and registration timestamp can drift apart by several days.
PRH is one of the tidier Nordic registers to query programmatically. The Patentti- ja rekisterihallitus data model is filing-oriented and stays fairly consistent across private companies (Oy) and listed public companies (Oyj). It is not a beneficial ownership register. Finnish beneficial ownership disclosures sit under a separate AML framework with statutory access controls.
OpenRegistry exposes the live PRH register through MCP. FI currently sits alongside jurisdictions including GB, NO, FR, IE, IT, NL and RU. Queries go straight to the upstream source. We do not remap Finnish field names into inferred ownership structures or internal risk scores.
The fields that actually matter
A standard get_company_profile request against Finland returns the expected identifiers first:
business_idcompany_namecompany_formregistration_dateregistered_officecompany_status
Most of the interesting material sits under jurisdiction_data. PRH often exposes filing references, upstream registration metadata and line-of-business classifications that the legacy paid databases tend to compress into a short company summary.
Finnish entities commonly surface structures connected to:
- trade register entries
- parallel business names
- board composition
- procuration rights
- liquidation or restructuring status
That distinction becomes important when you are checking signatory authority or sanctions exposure. A company can show an active board registration while keeping representation rights restricted in a separate filing entry.
Officer data follows the same pattern. get_officers can expose registered board members, managing directors or authorised signatories. Formal governance status is usually reliable. De facto control analysis is another matter.
A typical MCP search looks like this:
{
"tool": "search_companies",
"arguments": {
"jurisdiction": "FI",
"query": "Nokia Oyj"
}
}
Once you have the Business ID, profile retrieval is straightforward:
{
"tool": "get_company_profile",
"arguments": {
"jurisdiction": "FI",
"company_number": "0112038-9"
}
}
The operational detail worth watching is the raw payload shape. OpenRegistry returns the upstream PRH structure under jurisdiction_data, including Finnish terminology and filing references exactly as supplied by the source register.
Beneficial ownership after C-601/20
Finland implemented beneficial ownership disclosure obligations through the AML regime and 5AMLD. Public access narrowed across the EU after the CJEU rulings in Joined Cases C-37/20 and C-601/20.
A fair amount of vendor marketing around “real-time UBO access” skips over that legal distinction.
PRH maintains beneficial ownership information for reporting entities, but access is not equivalent to ordinary trade register access. OpenRegistry does not bypass AML-gated datasets and does not expose restricted beneficial ownership records where statutory controls apply.
For enhanced due diligence work, the Finnish Trade Register mainly serves as a source of corporate existence and authority evidence. It is useful for checking:
- legal existence
- board authority
- merger status
- bankruptcy proceedings
- registered representation rights
On its own, though, it is not enough for ownership-chain analysis under the OFAC 50 Percent Rule or comparable EU restrictive measures regimes.
The limitation comes from statute. Not product design.
Filing access and evidentiary use
In practice, Finnish filing records are often more useful than summary company profiles. list_filings can identify board changes, amendments to articles of association or restructuring events.
Example:
{
"tool": "list_filings",
"arguments": {
"jurisdiction": "FI",
"company_number": "0112038-9"
}
}
Where the upstream register exposes documents publicly, fetch_document retrieves the underlying filing itself rather than a generated summary.
That difference shows up quickly in cross-border disputes and M&A diligence work.
The question is rarely whether a filing exists. More often, the issue is whether the filing language actually authorises the transaction under review. Finnish signatory rules can become surprisingly granular. A requirement for two authorised signatories acting jointly is operationally very different from sole managing-director authority.
PRH records also help when reconciling Finnish entities against LEI datasets or securities disclosures. Listed issuers in Finland often reuse the same registration references across annual reports, trade register filings and EDINET-linked disclosure material.
What PRH does not provide
There are limits to the registry surface.
Finland does not expose unrestricted beneficial ownership datasets through the ordinary trade register interface. OpenRegistry also does not keep historical snapshots. If a board member changed yesterday, the query reflects the current upstream state.
There is no sanctions screening layer. No PEP matching either.
OpenRegistry also does not infer ownership percentages from officer appointments or filing language. From a legal perspective that sounds obvious. A surprising number of compliance products still do exactly that.
Keeping registry evidence separate from analytical conclusions produces a cleaner audit trail. A PRH extract is source evidence. An inferred ownership graph generated from filing text is something different.
Finland remains one of the steadier European registers for live corporate status checks because the filing metadata is structured and fairly consistent. For KYB workflows that need direct register provenance rather than aggregator summaries, OpenRegistry exposes the live PRH register through MCP at openregistry.sophymarine.com/mcp
Top comments (0)