GET
/
datasets
/
companies
/
{companyId}
/
financial-summary
curl --request GET \
  --url https://api.tic.io/datasets/companies/{companyId}/financial-summary \
  --header 'x-api-key: <api-key>'
[
  {
    "periodStart": "2023-11-07T05:31:56Z",
    "periodEnd": "2023-11-07T05:31:56Z",
    "rs_NetSalesK": 123,
    "rs_OtherOperatingIncomeK": 123,
    "rs_OperatingProfitOrLossK": 123,
    "rs_SumFinancialItemsK": 123,
    "rs_ProfitAfterFinancialItemsK": 123,
    "bs_TotalAssetsK": 123,
    "fn_NumberOfEmployees": 123,
    "km_OperatingMargin": 123,
    "km_NetProfitMargin": 123,
    "km_EquityAssetsRatio": 123,
    "km_GrossMargin": 123,
    "isAudited": true
  }
]

Details

This endpoint will return a financial summary for the last four years. Properties are prefixed to give a sense where they are placed in the financial report. Table below shows the prefixes and description.

PrefixDescription
rsResultsheet
bsBalancesheet
fnFootnote
kmKey metrics

Key metrics

The keymetrics are calculated according to the following table.

PrefixDescription
km_OperatingMarginEBIT (Operating profit/loss) divided by net sales
km_NetProfitMarginEBIE (Earnings Before Interest Expense) divided by net sales (NOTE ! if net sales isn’t present but other other operating income is reported we will instead use that for calculation)
km_EquityAssetsRatioSum equity plus adjusted equity (sum untaxed reserves deducated with the corporate tax) divided by total assets
km_GrossMarginGross profit/loss divided by net sales

Changes to calulcation may occur since different actors are interpreting data slightly differently for km_NetProfitMargin. If there are no net sales or other operating income reported the km_NetProfitMargin will be null.

Go deeper

To access all records of the financial report you should use the endpoint for financial-reports that gives you a ready to use table structure with localized names for the financial report.

Authorizations

x-api-key
string
header
required

Path Parameters

companyId
integer
required

The company id

Response

200 - application/json

OK

The response is of type object[].