Skip to main content
POST
/
quantlib
/
solver
/
finance
/
implied-vol-black76
Calculate Black76 Implied Volatility
curl --request POST \
  --url https://finceptbackend.share.zrok.io/quantlib/solver/finance/implied-vol-black76 \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "price": 3.5,
  "forward": 50,
  "strike": 52,
  "time": 0.25,
  "rate": 0.03,
  "option_type": "call"
}
'
{
  "success": true,
  "data": {
    "implied_volatility": 0.28,
    "option_type": "call"
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Get your key at https://finceptbackend.share.zrok.io/auth/register

Body

application/json
price
number
required

Market price of the option

Example:

3.5

forward
number
required

Forward price of the underlying

Example:

50

strike
number
required

Option strike price

Example:

52

time
number
required

Time to expiry in years

Example:

0.25

rate
number
required

Risk-free interest rate as a decimal

Example:

0.03

option_type
enum<string>
default:call

Type of option

Available options:
call,
put
Example:

"call"

Response

Successful Response

success
boolean
Example:

true

data
object