Greek Exposure
https://api.unusualwhales.com/api/stock/{ticker}/greek-exposure
Request
Authorization: Bearer <token>
Path Parameters
ticker
SingleTicker
required
A single ticker
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.
2024-01-18
timeframe
Time frame
optional
The timeframe of the data to return. Can be one of the following formats: - YTD - 1D, 2D, etc. - 1W, 2W, etc. - 1M, 2M, etc. - 1Y, 2Y, etc.
2M
Default:
1Y
Responses
200 422 500Response Body 200 OK
call_charm
Gex Call Charm
The sum of the charm values of all call transactions that executed multiplied by the open interest and the number of shares per contract (typically 100 shares per contract).
102382359.5786
call_delta
Gex Call Delta
The sum of the delta values of all call transactions that executed multiplied by the open interest and the number of shares per contract (typically 100 shares per contract).
227549667.4651
call_gamma
Gex Call Gamma
The sum of the gamma values of all call transactions that executed multiplied by the open interest and the number of shares per contract (typically 100 shares per contract).
9356683.4241
call_vanna
Gex Call Vanna
The sum of the vanna values of all call transactions that executed multiplied by the open interest and the number of shares per contract (typically 100 shares per contract).
152099632406.9564
date
Market General Trading day
A trading date in ISO format.
2023-09-08
put_charm
Gex Put Charm
The sum of the charm values of all put transactions that executed multiplied by the open interest and the number of shares per contract (typically 100 shares per contract).
-943028472.4815
put_delta
Gex Put Delta
The sum of the delta values of all put transactions that executed multiplied by the open interest and the number of shares per contract (typically 100 shares per contract).
-191893077.7193
put_gamma
Gex Put Gamma
The sum of the gamma values of all put transactions that executed multiplied by the open interest and the number of shares per contract (typically 100 shares per contract).
-12337386.0524
put_vanna
Gex Put Vanna
The sum of the vanna values of all put transactions that executed multiplied by the open interest and the number of shares per contract (typically 100 shares per contract).
488921784213.1121
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/greek-exposure" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
{
"data": [
{
"call_charm": "102382359.5786",
"call_delta": "227549667.4651",
"call_gamma": "9356683.4241",
"call_vanna": "152099632406.9564",
"date": "2023-09-08",
"put_charm": "-943028472.4815",
"put_delta": "-191893077.7193",
"put_gamma": "-12337386.0524",
"put_vanna": "488921784213.1121"
},
{
"call_charm": "81465130.0002",
"call_delta": "210202465.3421",
"call_gamma": "8456599.8505",
"call_vanna": "161231587973.6811",
"date": "2023-09-07",
"put_charm": "-1054548432.6111",
"put_delta": "-210881557.3003",
"put_gamma": "-12703877.0243",
"put_vanna": "488921784213.1121"
}
]
}