JavaScript
import Openregister from 'openregister'; const client = new Openregister({ apiKey: 'My API Key', }); const response = await client.company.getHoldingsV1('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>" } ] }
API Key Authentication Provide your API key as a Bearer token in the Authorization header.
Unique company identifier. Example: DE-HRB-F1103-267645
The holdings of the company
Companies this entity owns or has invested in.
Show child attributes
Type of relationship between the entity and the company.
shareholder
stockholder
limited_partner
general_partner
Name of the company.
Amount of shares or capital in the company. Example: 100
Share of the company. Example: 0.5 represents 50% ownership
Date when the ownership started. Format: ISO 8601 (YYYY-MM-DD) Example: "2022-01-01"
Date when the ownership ended. Format: ISO 8601 (YYYY-MM-DD) Example: "2022-01-01"