Skip to main content
GET
/
financials
/
balance-sheets
Get balance sheets
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/financials/balance-sheets \
  --header 'Authorization: Bearer <token>'
{
  "balance_sheets": [
    {
      "ticker": "<string>",
      "report_period": "2023-12-25",
      "fiscal_period": "<string>",
      "period": "quarterly",
      "currency": "<string>",
      "total_assets": 123,
      "current_assets": 123,
      "cash_and_equivalents": 123,
      "inventory": 123,
      "current_investments": 123,
      "trade_and_non_trade_receivables": 123,
      "non_current_assets": 123,
      "property_plant_and_equipment": 123,
      "goodwill_and_intangible_assets": 123,
      "investments": 123,
      "non_current_investments": 123,
      "outstanding_shares": 123,
      "tax_assets": 123,
      "total_liabilities": 123,
      "current_liabilities": 123,
      "current_debt": 123,
      "trade_and_non_trade_payables": 123,
      "deferred_revenue": 123,
      "deposit_liabilities": 123,
      "non_current_liabilities": 123,
      "non_current_debt": 123,
      "tax_liabilities": 123,
      "shareholders_equity": 123,
      "retained_earnings": 123,
      "accumulated_other_comprehensive_income": 123,
      "total_debt": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string
required

The ticker symbol.

period
enum<string>
required

The time period of the balance sheets.

Available options:
annual,
quarterly,
ttm
limit
integer<int32>

The maximum number of balance sheets to return

cik
string

The Central Index Key (CIK) of the company.

Response

Balance sheets response

balance_sheets
object[]