API Documentation

⌘K
GET/api/1/derivatives/options/iv-surface/{identifier}

IV Surface

Compute the implied volatility surface from the options chain. Returns a matrix of IV values indexed by expiration and strike.

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL, 037833100)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/derivatives/options/iv-surface/US0378331005' \
  -H 'Accept: application/json'
200 Response
{
  "ticker": "string",
  "spot": 0,
  "expirations": [],
  "strikes": [],
  "surface": [],
  "skew": {},
  "termStructure": {
    "expiration": "string",
    "atmIv": 0
  }
}