API Documentation

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

Balance Sheet API

Returns all Balance Sheet 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/balancesheet/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "liabilities": 10.624,
  "longTermDebt": 0,
  "longTermInvestments": 0,
  "noteReceivableLongTerm": 0,
  "otherCurrentAssets": 1.926,
  "otherCurrentliabilities": 6.812,
  "otherEquity": 0,
  "otherLiabilities": 0,
  "otherLongTermAssets": 1.808,
  "otherReceivables": 0,
  "period": "1985-06-30T00:00:00.000Z",
  "propertyPlantEquipment": 11.19,
  "receivables": 25.273,
  "retainedEarnings": 54.413,
  "shortTermDebt": 0,
  "unrealizedProfitLossSecurity": 1.808
}
]