Skip to main content
GET
/
v1
/
company
/
{company_id}
/
ubo
JavaScript
import Openregister from 'openregister';

const client = new Openregister({
  apiKey: 'My API Key',
});

const response = await client.company.getUbosV1('company_id');

console.log(response.company_id);
{
  "company_id": "<string>",
  "ubos": [
    {
      "id": "<string>",
      "name": "<string>",
      "natural_person": {
        "full_name": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "date_of_birth": "<string>",
        "city": "<string>",
        "country": "<string>"
      },
      "legal_person": {
        "name": "<string>",
        "city": "<string>",
        "country": "<string>"
      },
      "percentage_share": 123,
      "max_percentage_share": 123
    }
  ]
}

Retrieve the UBOs of a company

Provides the UBOs of a company. Currently supported legal forms:
- GmbH
- GGmbH
- UG
- KG

Authorizations

Authorization
string
header
required

API Key Authentication Provide your API key as a Bearer token in the Authorization header.

Path Parameters

company_id
string
required

Unique company identifier. Example: DE-HRB-F1103-267645

Response

The end owners of the company

company_id
string
required

Unique company identifier. Example: DE-HRB-F1103-267645

ubos
object[]
required
I