API Documentation

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

Income Statement API

Returns all Income 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/incomestatement/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "costOfGoodsSold": 16,
  "depreciationAmortization": 0,
  "diluted_eps": 0,
  "dilutedAverageSharesOutstanding": 0,
  "ebit": 11,
  "gainLossOnDispositionOfAssets": 0,
  "grossIncome": 34,
  "interestIncomeExpense": 0,
  "netIncome": 6,
  "nonRecurringItems": 0,
  "operationsMaintenance": 0,
  "otherOperatingExpensesTotal": 0,
  "otherRevenue": 0,
  "period": "1983-06-30T00:00:00.000Z",
  "pretaxIncome": 11,
  "provisionforIncomeTaxes": 5,
  "researchDevelopment": 7,
  "revenue": 50,
  "sgaExpense": 17,
  "shares": 6532,
  "ticker": "MSFT",
  "totalOperatingExpense": 23,
  "totalOtherIncomeExpenseNet": 0
}
]