Full Financials
GET
https://api.unusualwhales.com/api/stock/{ticker}/financials
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
ticker
SingleTicker
required
A single ticker
Example:
AAPL
Responses
200 422 500Response Body 200 OK
balance_sheets
array[Balance Sheet]
cash_flows
array[Cash Flow Statement]
earnings
array[Earnings Report]
income_statements
array[Income Statement]
Try It
GET
Path Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/financials" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": {
"balance_sheets": [
null
],
"cash_flows": [
null
],
"earnings": [
null
],
"income_statements": [
null
]
}
}