Unusual Whales UnusualWhales API

Top Net Impact

GET https://api.unusualwhales.com/api/market/top-net-impact

Request

Security: Bearer Auth Authorization: Bearer <token>

Query Parameters

date Optional Market Date optional

A trading date in the format of YYYY-MM-DD. This is optional and by default the last trading date.

Example: 2024-01-18
issue_types[] Issue types optional

An array of 1 or more issue types.

Example: Common StockIndex
enum: Common Stock, ETF, Index, ADR
limit Default 20 Max 100 Min 1 optional

How many items to return. Default: 20. Max: 100. Min: 1.

Example: 20 Default: 20
>= 1 <= 100

Responses

200 422 500

Response Body 200 OK

net_premium number

Net premium (net_call_premium - net_put_premium)

Example: 123456.78
ticker Stock Ticker

The stock ticker.

Example: AAPL
Try It GET
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/market/top-net-impact" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "net_premium": 2.5e6,
      "ticker": "AAPL"
    },
    {
      "net_premium": 1.2e6,
      "ticker": "MSFT"
    },
    {
      "net_premium": -1.8e6,
      "ticker": "TSLA"
    },
    {
      "net_premium": -9.0e5,
      "ticker": "QQQ"
    }
  ]
}