Unusual Whales UnusualWhales API

Balance Sheets

GET https://api.unusualwhales.com/api/stock/{ticker}/balance-sheets

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Responses

200 422 500

Response Body 200 OK

accumulated_depreciation_amortization_ppe string
Example: 73448000000
capital_lease_obligations string
Example: 12430000000
cash_and_cash_equivalents string
Example: 29943000000
cash_and_short_term_investments string
Example: 65171000000
common_stock string
Example: 83276000000
common_stock_shares_outstanding string
Example: 15115823000
current_accounts_payable string
Example: 68960000000
current_debt string
Example: 21023000000
current_long_term_debt string
Example: 10912000000
current_net_receivables string
Example: 66243000000
deferred_revenue string
Example: 8249000000
fiscal_date_ending string
Example: 2024-09-30
goodwill string
Example: 8000000000
inserted_at string
Example: 2026-07-29T12:34:56Z
intangible_assets string
Example: 5000000000
intangible_assets_excluding_goodwill string
Example: 3000000000
inventory string
Example: 7286000000
investments string
Example: 254000000000
long_term_debt string
Example: 96700000000
long_term_debt_noncurrent string
Example: 85750000000
long_term_investments string
Example: 91479000000
other_current_assets string
Example: 14287000000
other_current_liabilities string
Example: 78304000000
other_non_current_assets string
Example: 74834000000
other_non_current_liabilities string
Example: 45888000000

... and 17 more fields

Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/balance-sheets" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "goodwill": "8000000000",
      "intangible_assets": "5000000000",
      "other_non_current_liabilities": "45888000000",
      "short_long_term_debt_total": "106629000000",
      "total_liabilities": "308030000000"
    }
  ]
}