# Beneficial Ownership (UBO) Lookup

> Beneficial Ownership (UBO) Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.27/call, status unknown (last checked 2026-09-14).

Returns the ultimate beneficial owners (UBOs) of a company — individuals who own or control it — including their ownership percentages and the full ownership chain, using OpenOwnership and Companies House data.

## Facts

- Endpoint: POST https://api.strale.io/x402/beneficial-ownership-lookup
- Price: $0.27/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-c622c1a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KiBHTvrprKMgHjVnp3K11

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-strale-io-c622c1a7 -d '<json body>'
```

Example prompt: Who are the ultimate beneficial owners of Accenture Holdings UK Ltd — give me each person's name, ownership percentage, and the full ownership chain. The jurisdiction is GB.

## When to prefer this

Choose this endpoint when you need to identify the real human individuals behind a company for KYC, AML, or corporate due diligence purposes — especially for UK-registered companies where Companies House and OpenOwnership data is available. Prefer this over generic company lookup endpoints when the specific goal is tracing ultimate control rather than just registered corporate details.

## Known failure modes

- Company not found in registry — returns empty or null UBO list
- Jurisdiction not supported — non-UK companies may have limited data coverage
- Ambiguous company name with multiple matches — may require company_number to disambiguate
- Ownership data unavailable or not disclosed in the registry — partial results returned
- Invalid ISO country code returns a validation error

## How this service works

Look up UK beneficial ownership (UBO / PSC) information for a company. Returns individuals who ultimately own or control the entity, their ownership percentage, and the ownership chain. Uses Companies House Persons of Significant Control. UK-only — non-GB…

## Output

A list of individuals who ultimately own or control the queried company, each with their name, ownership percentage stake, and the full chain of intermediate entities connecting them to the target company. Data is sourced from OpenOwnership and Companies House for UK entities.

## Example request

```json
{
 "company_name": "Apple Inc",
 "jurisdiction": "US"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "company_name": {
   "type": "string",
   "description": "Company name"
  },
  "jurisdiction": {
   "type": "string",
   "description": "Country code (ISO 2-letter) for narrowing results (optional)"
  },
  "company_number": {
   "type": "string",
   "description": "Company registration number if known (optional)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-c622c1a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
