Skip to main content
GET
/
financials
/
cash-flow-statements
Get cash flow statements
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/financials/cash-flow-statements \
  --header 'Authorization: Bearer <token>'
{
  "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 cash flow statements.

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

The maximum number of cash flow statements to return.

cik
string

The Central Index Key (CIK) of the company.

Response

Cash flow statements response

cash_flow_statements
object[]