IV

Currently, the following markets are available to query IV from our IV oracles: WETH, WBTC, ARB, LINK, WSTETH, GMX, MAGIC, SOL, FXS. Please note that each market uses USD as the quote asset.

Gets multiple IV values for all valid strikes for a given option expiration of an underlying market via IV oracles.

GET/oracles/iv
Authorization
Query parameters
Response

Successful operation

Body
strike*number
Example: 1700
iv*number
Example: 0.47
Request
const response = await fetch('/oracles/iv?market=WETH&expiration=03NOV23', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "strike": 1700,
    "iv": 0.47
  }
]

Last updated

Terms and Disclaimers

Privacy Policy