Unusual Whales UnusualWhales API

Sector & Country weights

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

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

country Etf Countries

A list of countries with their exposure by percentage.

Example: [ { "country": "Netherlands", "weight": "0.0015" }, { "country": "Canada", "weight": "0.0014" } ]
sector Etf Sectors

A list of sectors with their exposure by percentage.

Example: [ { "sector": "Basic Materials", "weight": "0.022" }, { "sector": "Communication Services", "weight": "0.0861" } ]
Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/etfs/{ticker}/weights" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "country": [
    {
      "country": "Ireland",
      "weight": "0.0164"
    },
    {
      "country": "Other",
      "weight": "0.0059"
    },
    {
      "country": "Switzerland",
      "weight": "0.0043"
    },
    {
      "country": "Netherlands",
      "weight": "0.0015"
    },
    {
      "country": "Canada",
      "weight": "0.0014"
    },
    {
      "country": "Bermuda",
      "weight": "0.0011"
    },
    {
      "country": "Israel",
      "weight": "0.0001"
    },
    {
      "country": "United States",
      "weight": "0.9693"
    }
  ],
  "sector": [
    {
      "sector": "Basic Materials",
      "weight": "0.022"
    },
    {
      "sector": "Communication Services",
      "weight": "0.0861"
    },
    {
      "sector": "Consumer Cyclical",
      "weight": "0.1091"
    },
    {
      "sector": "Consumer Defensive",
      "weight": "0.0626"
    },
    {
      "sector": "Energy",
      "weight": "0.041"
    },
    {
      "sector": "Financial Services",
      "weight": "0.125"
    },
    {
      "sector": "Healthcare",
      "weight": "0.1272"
    },
    {
      "sector": "Industrials",
      "weight": "0.0816"
    },
    {
      "sector": "Other",
      "weight": "0.00009999999999990905"
    },
    {
      "sector": "Real Estate",
      "weight": "0.0243"
    },
    {
      "sector": "Technology",
      "weight": "0.2971"
    },
    {
      "sector": "Utilities",
      "weight": "0.0239"
    }
  ]
}