# Strale Beneficial Ownership Lookup

> Strale Beneficial Ownership 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).

Looks up the beneficial owners of a company by name, jurisdiction, or registration number, returning structured ownership data with a cryptographic audit record.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/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/strale-beneficial-ownership-lookup-b0f6b67f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IuPe1xjqwQGpaardsfNi1

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 strale-beneficial-ownership-lookup-b0f6b67f -d '<json body>'
```

Example prompt: Who are the beneficial owners of Siemens AG in Germany? I need this for a KYC compliance check — the company registration number is HRB 248136.

## When to prefer this

Choose this endpoint when you need structured, independently tested beneficial ownership data across 27 countries with a cryptographic audit trail for compliance purposes (KYC, AML, due diligence). Prefer it over general web search when you need machine-readable ownership records with verifiable provenance, or when operating in a regulated context where an audit record is required.

## Known failure modes

- Company not found in the registry for the specified jurisdiction — returns empty or no-match result
- Invalid or unrecognized company registration number — returns validation error
- Unsupported jurisdiction — country not covered among the 27 supported countries
- Ambiguous company name with multiple matches — may return multiple candidates or require disambiguation
- Payment failure via x402 micropayment — call not executed
- Rate limiting or quota exceeded — HTTP 429 response

## 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

Returns a structured record of the company's beneficial owners including names, ownership percentages, and control details, along with a cryptographic audit record containing a chain hash for verification and traceability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company_name"
 ],
 "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)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "message": {
  "type": "string"
 },
 "data_source": {
  "type": "string"
 },
 "company_name": {
  "type": "string"
 },
 "has_psc_data": {
  "type": "boolean"
 },
 "jurisdiction": {
  "type": "string"
 },
 "company_number": {
  "type": "string"
 },
 "company_status": {
  "type": "string"
 },
 "beneficial_owners": {
  "type": "array"
 },
 "supported_jurisdiction": {
  "type": "boolean"
 },
 "supported_jurisdictions": {
  "type": "array"
 },
 "total_beneficial_owners": {
  "type": "integer"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-beneficial-ownership-lookup-b0f6b67f/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)
