GET
/
v1
/
document
JavaScript
import Openregister from 'openregister';

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

const response = await client.document.getRealtimeV1({
  company_id: 'company_id',
  document_category: 'current_printout',
});

console.log(response.category);
{
  "url": "<string>",
  "category": "current_printout",
  "file_date": "<string>",
  "file_name": "<string>"
}

Retrieve realtime documents for a company

Retrieve realtime documents for a company from the Handelsregister.

Authorizations

Authorization
string
header
required

API Key Authentication Provide your API key as a Bearer token in the Authorization header.

Query Parameters

company_id
string
required
document_category
enum<string>
required
Available options:
current_printout,
chronological_printout,
historical_printout,
structured_information,
shareholder_list,
articles_of_association

Response

200
application/json

Success

The response is of type object.