Skip to main content
POST
/
quantlib
/
pricing
/
bachelier
/
price
Bachelier Option Price
curl --request POST \
  --url https://finceptbackend.share.zrok.io/quantlib/pricing/bachelier/price \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "forward": 102,
  "strike": 105,
  "risk_free_rate": 0.01,
  "normal_volatility": 25,
  "time_to_maturity": 1,
  "option_type": "call"
}
'
{
  "success": true,
  "data": {
    "price": 7.892,
    "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
forward
number
required

Forward price of the underlying asset

Example:

102

strike
number
required

Strike price of the option

Example:

105

risk_free_rate
number
required

Risk-free interest rate (annualized, decimal format)

Example:

0.05

normal_volatility
number
required

Annualized normal (absolute) volatility

Example:

25

time_to_maturity
number
required

Time to expiration in years

Example:

1

option_type
enum<string>
default:call

Type of option

Available options:
call,
put
Example:

"call"

Response

Successful calculation

success
boolean
Example:

true

data
object