Unusual Whales UnusualWhales API

Exposure

GET https://api.unusualwhales.com/api/etfs/{ticker}/exposure

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Responses

200

Response Body 200 OK

etf Etf Ticker

The ticker of the ETF.

Example: VTI
full_name Etf Full Name

The full name of the ETF.

Example: SPDR S&P 500 ETF Trust
last_price Candle Close

The closing price of the candle.

Example: 56.79
prev_price Stock Prev Close Price

The previous trading day's stock price of the ticker.

Example: 189.70
shares Etf Shares

The amount of shares that the ETF holds.

Example: 48427939
weight Etf Weight

The weight in percentage that the position represents in the ETF.

Example: 0.35
Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/etfs/{ticker}/exposure" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "etf": "VTI",
      "full_name": "VANGUARD TOTAL STOCK MARKET INDEX FUND",
      "last_price": "236.16",
      "prev_price": "235.25",
      "shares": 130464268,
      "weight": "0.35"
    },
    {
      "etf": "VOO",
      "full_name": "VANGUARD 500 INDEX FUND",
      "last_price": "435.2",
      "prev_price": "433.19",
      "shares": 102076425,
      "weight": "0.49"
    },
    {
      "etf": "QQQ",
      "full_name": "INVESCO QQQ ",
      "last_price": "405.97",
      "prev_price": "404.96",
      "shares": 75412427,
      "weight": "1.566"
    },
    {
      "etf": "SPY",
      "full_name": "SPDR S&P 500 ETF",
      "last_price": "471.55",
      "prev_price": "469.37",
      "shares": 48427939,
      "weight": "0.476355"
    }
  ]
}