top of page
Company Financials

Import guide for key financial metrics of Portfolio Companies

A Portfolio Company needs to implement 5 API endpoints to import its data into AIRR automatically. The Organisation team then adds the URLs of these endpoints in General Settings -> Company Connections. A scheduled process in AIRR downloads the data from these endpoints once a day into AIRR and saves a new record every time a new data comes up.

​

AIRR supports multiple currencies for that API (the portfolio companies can submit their metrics in any currency they want, and those will be converted into the reporting currency of your Organisation in AIRR).

​

All API endpoints have to be protected with login and password and support Basic Auth. The response format should be json, in accordance with the endpoints described below. HTTPS is optional.

GET
Get Revenue LTM

Returns cumulative revenue for your Portfolio Company for the last twelve months.

Request

Headers

REQUIRED

application/json

string

Accept

REQUIRED

Basic HTTP authorisation header

string

Authorization

Response

200: OK

{
    revenue: 100000000,
    date:2020-01-01,
    currency: USD
}

GET
Get EBITDA LTM

Returns cumulative EBITDA for your Portfolio Company for the last twelve months.

Request

Headers

REQUIRED

Basic HTTP authorisation header

string

Authorization

REQUIRED

application/json

string

Accept

Response

200: OK

{
    ebitda_ltm: 50000000,
    date: 2020-01-01,
    currency: USD
}

GET
Get Net Income LTM

Returns cumulative Net Income for your Portfolio Company for the last twelve months

Request

Headers

REQUIRED

Basic HTTP authorisation header

string

Authorization

REQUIRED

application/json

string

Accept

Response

200: OK

{
    net_income_ltm: 1000000,
    date: 2020-01-01,
    currency: USD
}

GET
Get Cash on Account

Returns total amount of cash on account for your Portfolio Company.

Request

Headers

REQUIRED

Basic HTTP authorisation header

string

Authorization

REQUIRED

application/json

string

Accept

Response

200: OK

{
    cash: 4000000,
    date: 2020-01-01,
    currency: USD
}

GET
Get Debt Outstanding

Returns total amount of all outstanding loans of your Portfolio Company.

Request

Headers

REQUIRED

Basic HTTP authorisation header

string

Authorization

REQUIRED

application/json

string

Accept

Response

200: OK

{
    debt: 500000,
    date: 2020-01-01,
    currency: USD
}

bottom of page