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 } ] }
- GmbH - GGmbH - UG - KG
API Key Authentication Provide your API key as a Bearer token in the Authorization header.
Unique company identifier. Example: DE-HRB-F1103-267645
The end owners of the company
Show child attributes
Was this page helpful?