Implied Volatility by Strike
HTTP Request
POST /api/v1/global/data/iV/byStrike
Get current implied volatility for target strike
Supported exchanges and assets (baseCurrency/quoteCurrency)
DERIBIT
: BTC/USD, ETH/USD, SOL/USDC, XRP/USDC
OKX
: BTC/USD, ETH/USD
BYBIT
: BTC/USDC, ETH/USDC, SOL/USDC
The request body must contain an array of Instrument ranging in size from 1
to 50
Request body JSON Parameters
Parameter | Type | Required | Description |
---|---|---|---|
instrumentId | String | Yes | User defined unique instrument ID |
baseCurrency | String | Yes | Base currency ticker:BTC ,ETH ,SOL ,XRP |
quoteCurrency | String | Yes | Quote currency ticker:USD ,USDC |
source | String | Yes | Exchange type:DERIBIT ,OKX ,BYBIT |
volatilityModel | String | Yes | Volatility model:SVI , SABR , VANNA_VOLGA The model is calibrated to the Exchange given by the Exchange type |
expirationTimestamp | Num | Yes | Instrument expiration timestamp (in seconds) Must be >= current timestamp |
strike | Num | Yes | Target strike Must be > 0 |
Response body Json Parameters
Parameter | Type | Description |
---|---|---|
instrumentId | String | User defined unique instrument ID |
observationTimestamp | Num | Instrument observation timestamp (in seconds) |
impliedVolatility | Num | Implied volatility for the target strike |
spotPrice | Num | Current spot price |
forwardPrice | Num | Current forward price |
Request Example
POST /api/v1/global/data/iV/byStrike
body
[
{
"instrumentId": "DERIBIT-BTC-USD-28JUL24-70000-SVI",
"baseCurrency": "BTC",
"quoteCurrency": "USD",
"source": "DERIBIT",
"volatilityModel": "SVI",
"expirationTimestamp": 1722153600,
"strike": 70000
},
{
"instrumentId": "DERIBIT-BTC-USD-28JUL24-80000-SABR",
"baseCurrency": "BTC",
"quoteCurrency": "USD",
"source": "DERIBIT",
"volatilityModel": "SABR",
"expirationTimestamp": 1722153600,
"strike": 80000
},
{
"instrumentId": "DERIBIT-BTC-USD-28JUL24-90000-VANNA_VOLGA",
"baseCurrency": "BTC",
"quoteCurrency": "USD",
"source": "DERIBIT",
"volatilityModel": "VANNA_VOLGA",
"expirationTimestamp": 1722153600,
"strike": 90000
}
]
Response Example
[
{
"instrumentId": "DERIBIT-BTC-USD-28JUL24-70000-SVI",
"observationTimestamp": 1717433945,
"impliedVolatility": 0.5399902881518645,
"spotPrice": 67625.42,
"forwardPrice": 69139.07047619054
},
{
"instrumentId": "DERIBIT-BTC-USD-28JUL24-80000-SABR",
"observationTimestamp": 1717433945,
"impliedVolatility": 0.5542362243957041,
"spotPrice": 67625.42,
"forwardPrice": 69139.07047619054
},
{
"instrumentId": "DERIBIT-BTC-USD-28JUL24-90000-VANNA_VOLGA",
"observationTimestamp": 1717433945,
"impliedVolatility": 0.5805891045174244,
"spotPrice": 67625.42,
"forwardPrice": 69139.07047619054
}
]