API Documentation

⌘K
GET/api/1/equity/cashflowstatement/{identifier}

Cash Flow Statement API

Returns all Cash Flow Statement data for the given ISIN

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/cashflowstatement/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "ticker": "MSFT",
  "period": "1987-06-30T00:00:00.000Z",
  "netIncomeStartingLine": 72,
  "amortization": 8,
  "deferredTaxesInvestmentTaxCredit": 0,
  "changesinWorkingCapital": -20,
  "nonCashItems": 0,
  "cashInterestPaid": 1,
  "cashTaxesPaid": 32,
  "netOperatingCashFlow": 59,
  "capex": -58,
  "netInvestingCashFlow": -101,
  "otherInvestingCashFlowItemsTotal": -44,
  "issuanceReductionDebtNet": 3,
  "issuanceReductionCapitalStock": 2,
  "otherFundsFinancingItems": 24,
  "cashDividendsPaid": 0,
  "netCashFinancingActivities": 29,
  "cashNet": -13,
  "foreignExchangeEffects": 0,
  "fcf": 1,
  "year": 1987,
  "changeinCash": 0
}
]