GET
/
v1
/
company
/
{company_id}
/
owners
JavaScript
import Openregister from 'openregister';

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

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

console.log(response.company_id);
{
  "company_id": "<string>",
  "owners": [
    {
      "id": "<string>",
      "type": "natural_person",
      "relation_type": "shareholder",
      "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>"
      },
      "nominal_share": 123,
      "percentage_share": 123,
      "start": "<string>"
    }
  ]
}

Retrieve the owners of a company

Provides the owners of a company. Currently supported legal forms:
- GmbH      ("gmbh")
- KG        ("kg")
- e.K.      ("ek")
- eGbR      ("egbr")
- OHG       ("ohg")

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

200
application/json

The owners of the company

The response is of type object.