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

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

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

console.log(response.reports);
{
  "reports": [
    {
      "report_id": "<string>",
      "consolidated": true,
      "aktiva": {
        "rows": [
          {
            "name": "<string>",
            "formatted_name": "<string>",
            "current_value": 123,
            "previous_value": 123,
            "children": [
              {}
            ]
          }
        ]
      },
      "passiva": {
        "rows": [
          {
            "name": "<string>",
            "formatted_name": "<string>",
            "current_value": 123,
            "previous_value": 123,
            "children": [
              {}
            ]
          }
        ]
      },
      "guv": {
        "rows": [
          {
            "name": "<string>",
            "formatted_name": "<string>",
            "current_value": 123,
            "previous_value": 123,
            "children": [
              {}
            ]
          }
        ]
      },
      "report_start_date": "2023-11-07T05:31:56Z",
      "report_end_date": "2023-11-07T05:31:56Z"
    }
  ]
}

Get company financials

Retrieve financials for a company using its unique ID.

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

Success

The response is of type object.