JavaScript
import Openregister from 'openregister'; const client = new Openregister({ apiKey: 'My API Key', }); const response = await client.person.getHoldingsV1('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'); console.log(response.person_id);
{ "person_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 person identifier. Example: cc78ab54-d958-49b8-bae7-2f6c0c308837
The holdings of the person
Companies this entity owns or has invested in.
Shareholder and limited partner positions of the person.
Show child attributes
Unique company identifier. Example: DE-HRB-F1103-267645
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"