Fundamental Breakdown
GET
https://api.unusualwhales.com/api/stock/{ticker}/fundamental-breakdown
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
ticker
SingleTicker
required
A single ticker
Example:
AAPL
Responses
200 422 500Response Body 200 OK
annual_only
boolean
True when every report in `general` is an annual filing.
Example:
true
general
array[Fundamental Breakdown Report]
rev_breakdown
array[Revenue Breakdown Row]
Try It
GET
Path Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/fundamental-breakdown" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": {
"annual_only": true,
"general": [
null
],
"rev_breakdown": [
null
]
}
}