Skip to main content
The graph datapoint builds a complete ownership tree by recursively fetching shareholders across multiple countries and traversal depths. Starting from a root company, Topograph follows corporate shareholder chains (resolving each company in its local registry) to produce a full graph of entities and ownership relationships. The result includes UBO (Ultimate Beneficial Owner) calculations based on ownership thresholds.
graph is a verification-only datapoint. The traversal resolves each node against its live local register, so it cannot complete within the onboarding deadline. Requesting graph with mode: "onboarding" fails immediately with fast_source_unavailable, without fetching or billing anything. See Modes.

Example Request

How It Works

  1. Root fetch: Retrieves the company profile and shareholders from the root company’s registry
  2. Shareholder resolution: For each corporate shareholder, searches the relevant country’s registry to find the company
  3. Recursive traversal: Fetches shareholders for each resolved company, building the tree level by level
  4. UBO calculation: Identifies individuals with >25% ownership through direct or indirect chains
The traversal runs breadth-first with bounded concurrency. Each level completes before the next starts.

Traversal Limits

The graph traversal has built-in limits to control scope and cost: When any limit is reached, the graph returns all data collected up to that point with a stoppedReason indicating why traversal stopped.
Need higher limits? If your use case requires deeper traversals or more entities, contact us to discuss your requirements.

Stopped Reasons

The metadata.stoppedReason field indicates how the traversal ended:

Response Structure

The graph result is included alongside the standard company data:

Node Flags

A node with status: "budget_truncated" is a placeholder for a corporate shareholder the traversal did not fetch (because of graphMaxBudget, graphInteractive, or a depth/entity limit). It carries the nodeId and a cost preview, and can be passed to graphContinueFromNodeIds in a follow-up request to resume from there.

Interactive mode

Set graphInteractive: true to fetch only the entry company and return its direct shareholders. Companies among those shareholders come back as budget_truncated placeholders so the caller decides which branches to expand. Each chip click is one fetch and one billing event.
graphInteractive and graphMaxBudget are mutually exclusive. When graphInteractive is true, the budget value is ignored. The response carries graph.metadata.interactive: true so a stored result is self-describing, and graph.metadata.stoppedReason reads max_depth_reached.

Continuing from a previous request

To extend a graph from one or more budget_truncated placeholders, pass their nodeIds in graphContinueFromNodeIds and link to the parent through mainRequestId. countryCode and id are derived from the parent automatically.
Cost deduplication applies across the full request tree: companies already fetched in the parent (or a sibling continuation) are not re-billed. If the parent request was made with graphInteractive: true, every continuation inherits the flag. The seeded node is fetched and its own direct shareholders are surfaced as a fresh layer of placeholders, ready for the next click.

Best Practices

Use graphMaxBudget when you want a single response with as much of the tree as fits within a known cost ceiling. Use graphInteractive when you want predictable per-step cost and a deterministic UI: one fetch per request, the rest of the tree visible only as continuation handles you choose to expand.
The graphMaxBudget parameter is the primary way to control non-interactive traversal scope. Start with a lower budget for exploration, then increase if you need deeper coverage. Each company lookup costs the standard price for that country.
Graph traversal time depends on the number of companies, the countries involved, and registry response times. Simple structures (1-2 levels, single country) complete in seconds. Complex multi-country structures with deep chains can take several minutes. Interactive requests are bounded by a single company fetch, so they return as fast as that country’s registry replies.
When a limit is reached, the graph returns everything collected so far. Check metadata.stoppedReason to understand why traversal stopped and whether requesting again with a higher budget, or extending via graphContinueFromNodeIds, would yield more data.