Skip to main content
shareholders is a first-class data block in the Topograph data model. In countries with direct registry access (e.g., Germany, Spain), shareholder data is returned directly from official sources when you request the shareholders datapoint. For countries that don’t expose shareholder data directly through official registries, Topograph offers a shareholders datapoint that reconstructs the most probable current shareholder structure by analyzing available company documents. The output format is identical regardless of whether the data comes from a registry or from document reconstruction. To tell them apart in the response, inspect the dataSources object (see Identifying Reconstructed Shareholders).
Sole entrepreneurs and non-profits have no share capital, so the shareholders datapoint returns an explicit datapoint_not_applicable response for them instead of an empty list. The owner is available under legalRepresentatives and ultimateBeneficialOwners. See Sole Entrepreneurs & Non-Profits.
Alpha Feature: Best Effort ReconstructionThis feature reconstructs a plausible shareholder structure based on available public documents. Due to the nature of incomplete public records, we cannot guarantee that:
  • All shareholders are captured, as some may be missing if not disclosed in available documents
  • No extra shareholders appear, as historical shareholders may be included if no exit was recorded
  • Share amounts are exact. Percentages and share counts are approximations based on available data
This is a best-effort reconstruction, not authoritative registry data. Results should be verified manually for compliance or legal use cases.Additional alpha limitations:
  • Processing may take 30 seconds to several minutes
  • Extraction may fail or return no results for some companies
  • Behavior and pricing may change

Supported countries

See Coverage and pricing for live availability and pricing.

Example Request

Example Response

The response uses the same shareholders structure as countries with direct registry access:

Identifying Reconstructed Shareholders

Reconstructed shareholders are always tagged as AI-derived in the dataSources object. Registry-backed shareholders carry a live_from_registry or cached_from_registry source instead. Use this to filter or flag best-effort data in your own pipelines. Three fields on dataSources.shareholders describe the reconstruction:
  • overall.type === "ai_analysis": the entire list was produced by document reconstruction. The overall.analysis field carries the agent’s reasoning summary, and overall.documents lists the filings it relied on.
  • limitations: a structured array of gaps the agent flagged (e.g., unparseable documents, missing share-pledge agreements). Present only when gaps were detected.
  • items[i].overall: per-shareholder narrative explaining how that specific entity was traced. Aligned 1:1 by index with the shareholders array. The entityId field lets you match items back to shareholders without relying on order.
Per-field sources live under items[i].fields and use the same type taxonomy, so an individual field (e.g., sharePercentage) can be flagged as ai_analysis even when the rest of the entity is registry-backed.

Example dataSources Payload

Data Source Types

In the Ownership Graph

Reconstructed shareholders also surface inside the graph datapoint. Each company node whose shareholders were reconstructed carries its own block under dataSources.graph.nodes[<nodeId>].shareholders, with the same overall, limitations, and items shape documented above. This lets you spot best-effort reconstructions at any depth of the ownership tree, not just for the root company.

Best Practices

This is a best-effort reconstruction. Use the data for initial research or screening, but verify through official channels for compliance decisions.
If your process needs registry-backed data only, exclude any shareholder whose dataSources.shareholders.items[i].overall.type (or any relevant fields[x].type) is ai_analysis.
The dataSources.shareholders.limitations array is written to be human-readable. Display it alongside the reconstructed list so reviewers know what the agent couldn’t determine.
Use alongside ultimateBeneficialOwners for a more complete ownership picture. UBOs come from official registers where available.