Unusual Whales UnusualWhales API

Nope

GET https://api.unusualwhales.com/api/stock/{ticker}/nope

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

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

Responses

200

Response Body 200 OK

call_delta Call Delta

The total call delta obtained by multiplying the volume of all call options with their latest delta.

Example: -21257.36
call_fill_delta Call Fill Delta

The total call delta obtained by summing up the size of each call trade multiplied by the delta at the time of the transaction.

Example: -21257.36
call_vol Call Volume

The cumulative total volume of call options traded.

Example: 12348
nope Nope score

The NOPE value based on call_delta & put_delta

Example: -0.000648
nope_fill Nope Fill

The NOPE value based on call_fill_delta & put_fill_delta

Example: -0.000434
put_delta Put Delta

The total put delta obtained by multiplying the volume of all put options with their latest delta.

Example: -43593.96
put_fill_delta Put Fill Delta

The total put delta obtained by summing up the size of each put trade multiplied by the delta at the time of the transaction.

Example: -43593.96
put_vol Put Volume

The cumulative total volume of put options traded.

Example: 12348
stock_vol Stock Volume

The cumulative total volume of the underlying stock traded.

Example: 12348
timestamp Timestamp

The (start of minute) timestamp of the data.

Example: 2024-10-28T18:46:00Z
Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/nope" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "call_delta": "-21257.36",
      "call_fill_delta": "-28564.02",
      "call_vol": 23421,
      "nope": "-0.000648",
      "nope_fill": "-0.000434",
      "put_delta": "-43593.96",
      "put_fill_delta": "-14947.51",
      "put_vol": 23421,
      "stock_vol": 100000,
      "timestamp": "2024-10-28T18:46:00Z"
    }
  ]
}