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

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

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

console.log(response.company_id);
{
  "company_id": "<string>",
  "holdings": [
    {
      "company_id": "<string>",
      "relation_type": "shareholder",
      "name": "<string>",
      "nominal_share": 123,
      "percentage_share": 123,
      "start": "<string>",
      "end": "<string>"
    }
  ]
}

Retrieve the holdings of a company

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 holdings of the company

Companies this entity owns or has invested in.