import Openregister from 'openregister';
const client = new Openregister({
apiKey: process.env['OPENREGISTER_API_KEY'], // This is the default and can be omitted
});
const response = await client.company.listShareholders('company_id');
console.log(response.document_id);
import Openregister from 'openregister';
const client = new Openregister({
apiKey: process.env['OPENREGISTER_API_KEY'], // This is the default and can be omitted
});
const response = await client.company.listShareholders('company_id');
console.log(response.document_id);
This endpoint currently only supports companies with the legal form GmbH. But we are actively working on supporting other legal forms.The endpoint may process the files from the register in real-time. The request can take up to 30 seconds to complete. In practice, it should take less than 2 seconds.