Skip to main content
GET
/
financials
Get all financial statements
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/financials \
  --header 'Authorization: Bearer <token>'
{
  "financials": {
    "income_statements": [
      {
        "ticker": "<string>",
        "report_period": "2023-12-25",
        "fiscal_period": "<string>",
        "period": "quarterly",
        "currency": "<string>",
        "revenue": 123,
        "cost_of_revenue": 123,
        "gross_profit": 123,
        "operating_expense": 123,
        "selling_general_and_administrative_expenses": 123,
        "research_and_development": 123,
        "operating_income": 123,
        "interest_expense": 123,
        "ebit": 123,
        "income_tax_expense": 123,
        "net_income_discontinued_operations": 123,
        "net_income_non_controlling_interests": 123,
        "net_income": 123,
        "net_income_common_stock": 123,
        "preferred_dividends_impact": 123,
        "consolidated_income": 123,
        "earnings_per_share": 123,
        "earnings_per_share_diluted": 123,
        "dividends_per_common_share": 123,
        "weighted_average_shares": 123,
        "weighted_average_shares_diluted": 123
      }
    ],
    "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
      }
    ],
    "cash_flow_statements": [
      {
        "ticker": "<string>",
        "report_period": "2023-12-25",
        "fiscal_period": "<string>",
        "period": "quarterly",
        "currency": "<string>",
        "net_income": 123,
        "depreciation_and_amortization": 123,
        "share_based_compensation": 123,
        "net_cash_flow_from_operations": 123,
        "capital_expenditure": 123,
        "business_acquisitions_and_disposals": 123,
        "investment_acquisitions_and_disposals": 123,
        "net_cash_flow_from_investing": 123,
        "issuance_or_repayment_of_debt_securities": 123,
        "issuance_or_purchase_of_equity_shares": 123,
        "dividends_and_other_cash_distributions": 123,
        "net_cash_flow_from_financing": 123,
        "change_in_cash_and_equivalents": 123,
        "effect_of_exchange_rate_changes": 123,
        "ending_cash_balance": 123,
        "free_cash_flow": 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 financial statements.

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

The maximum number of financial statements to return.

cik
string

The Central Index Key (CIK) of the company.

Response

Financial statements response

financials
object