DEV Community

Cover image for New Zealand Companies Office: officer data quirks in practice
OpenRegistry
OpenRegistry

Posted on

New Zealand Companies Office: officer data quirks in practice

New Zealand company records still expose director residential addresses in situations where many UK practitioners now expect redaction. The Companies Act 1993 preserved disclosure routes that disappeared across parts of Europe after C-37/20 and C-601/20 reshaped access to beneficial-ownership records.

That catches people during APAC KYB work. The New Zealand Companies Office is not a beneficial ownership register in the EU sense, yet it remains one of the cleaner public datasets for checking directors, filings, and company status changes. For sanctions ownership analysis or statutory notice work, that distinction matters.

What the Companies Office returns

The Companies Register under Part 4 of the Companies Act 1993 exposes a fairly direct operational dataset. Through OpenRegistry MCP, the New Zealand endpoint returns upstream registry fields inside jurisdiction_data with only light schema alignment.

A standard get_company_profile response usually includes:

  • NZBN identifiers
  • company number
  • incorporation date
  • registered office address
  • address for service
  • company status
  • annual return filing month
  • entity subtype
  • director records

Director data is usually the useful bit. Depending on the entity type and the current disclosure settings, the upstream payload may include appointment dates, service addresses, or residency indicators.

For filing work, list_filings exposes registry events tied to annual returns, constitutions, director changes, amalgamations, and liquidation actions. Some registers collapse years of activity into one status field. New Zealand usually does not. You get a readable event trail instead of a derived summary.

Officer lookups sit separately from the company profile. get_officers returns appointment data linked to the entity record, which matters during insolvency tracing or deposition prep because historical officer movement is often clearer in raw registry events than in the legacy paid databases that overwrite prior states.

New Zealand also keeps a fairly hard separation between registration data and beneficial ownership concepts. The public Companies Office interface does not expose a UBO register equivalent. There is no direct analogue to the UK PSC disclosure model under Companies Act 2006 s.790E.

What you will not get

The first limitation is simple: there is no public beneficial ownership register.

New Zealand’s AML/CFT regime imposes customer due diligence obligations under the Anti-Money Laundering and Countering Financing of Terrorism Act 2009, but those obligations do not create a public dataset comparable to the EU access model that existed before C-601/20.

If your sanctions workflow depends on tracing natural persons through layered structures, the Companies Office alone will not cover it. You still need supporting material such as trust analysis, shareholder agreements, offshore register records, or regulated-source KYC documents.

You also should not treat the register as an archive. OpenRegistry does not store snapshots. Every request hits the live registry directly.

That affects evidence handling. If a director resigns today, tomorrow’s query reflects the updated state. Litigation hold work or transaction chronology still requires your own preservation process.

Document availability shifts by filing type. Some events expose downloadable documents. Others expose metadata only.

Querying the registry through MCP

The OpenRegistry server exposes the New Zealand register through the same MCP tool surface used for the other 26 jurisdictions. Upstream data quality varies between registers, though the tool interface stays consistent.

Searching by company name:

{
  "tool": "search_companies",
  "arguments": {
    "jurisdiction": "NZ",
    "query": "Fisher & Paykel Healthcare"
  }
}
Enter fullscreen mode Exit fullscreen mode

Retrieving a company profile after identifying the company number:

{
  "tool": "get_company_profile",
  "arguments": {
    "jurisdiction": "NZ",
    "company_number": "110508"
  }
}
Enter fullscreen mode Exit fullscreen mode

Reviewing officer history:

{
  "tool": "get_officers",
  "arguments": {
    "jurisdiction": "NZ",
    "company_number": "110508"
  }
}
Enter fullscreen mode Exit fullscreen mode

Reviewing filing chronology:

{
  "tool": "list_filings",
  "arguments": {
    "jurisdiction": "NZ",
    "company_number": "110508"
  }
}
Enter fullscreen mode Exit fullscreen mode

That consistency matters operationally. A compliance team reviewing NZ entities alongside GB, AU, HK, or IE records can keep the same MCP integration and switch only the jurisdiction code.

Statutory notice work versus commercial datasets

New Zealand is a good reminder that official registers and commercial KYB products solve different problems.

For statutory notice questions, the Companies Register is the source that matters. Courts care about what was filed with the registrar. Cached vendor copies carry less weight once dates, service addresses, or appointment timing become disputed.

That shows up regularly in insolvency matters and director liability disputes. If someone challenges service of notice or the timing of a resignation, the official filing trail is usually where the argument turns.

The legacy paid databases also tend to smooth over registry inconsistencies that investigators actually need to inspect. New Zealand filings include spelling variations, formatting quirks, plus occasional address inconsistencies. Raw registry output is not always tidy. The messy parts often contain the useful facts.

The jurisdiction is also useful during sanctions and export-control reviews because New Zealand entities appear regularly in trans-Tasman structures involving Australian parents, Pacific subsidiaries, or UK-linked trusts. Direct access to filing events makes director overlap analysis much easier across those structures.

For APAC diligence work, the practical point is straightforward: the New Zealand register is unusually accessible by international standards, though it remains a company register rather than a verified beneficial ownership system.

OpenRegistry exposes the live Companies Office data through MCP at https://openregistry.sophymarine.com/mcp so assistants and internal tooling can query the registry directly instead of relying on cached aggregator exports.

Top comments (0)