Cash Flow Statements
GET
https://api.unusualwhales.com/api/stock/{ticker}/cash-flows
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
ticker
SingleTicker
required
A single ticker
Example:
AAPL
Responses
200 422 500Response Body 200 OK
capital_expenditures
string
Example:
-9959000000
cashflow_from_financing
string
Example:
-121983000000
cashflow_from_investment
string
Example:
2935000000
change_in_cash_and_cash_equivalents
string
Example:
-794000000
change_in_exchange_rate
string
Example:
0
change_in_inventory
string
Example:
-1046000000
change_in_operating_assets
string
Example:
-5900000000
change_in_operating_liabilities
string
Example:
21572000000
change_in_receivables
string
Example:
-5100000000
depreciation_depletion_and_amortization
string
Example:
11445000000
dividend_payout
string
Example:
-15234000000
dividend_payout_common_stock
string
Example:
-15234000000
dividend_payout_preferred_stock
string
Example:
0
fiscal_date_ending
string
Example:
2024-09-30
inserted_at
string
Example:
2026-07-29T12:34:56Z
net_income
string
Example:
93736000000
operating_cashflow
string
Example:
118254000000
payments_for_operating_activities
string
Example:
12000000000
payments_for_repurchase_of_common_stock
string
Example:
-94949000000
payments_for_repurchase_of_equity
string
Example:
-94949000000
payments_for_repurchase_of_preferred_stock
string
Example:
0
proceeds_from_issuance_of_common_stock
string
Example:
0
proceeds_from_issuance_of_long_term_debt
string
Example:
0
proceeds_from_issuance_of_preferred_stock
string
Example:
0
proceeds_from_operating_activities
string
Example:
0
... and 9 more fields
Try It
GET
Path Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/cash-flows" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"dividend_payout_common_stock": "-15234000000",
"inserted_at": "2026-07-29T12:34:56Z",
"operating_cashflow": "118254000000",
"proceeds_from_repurchase_of_equity": "-94949000000",
"stock_based_compensation": "11688000000"
}
]
}