QuantOracle

QuantOracle API

73 deterministic quant finance endpoints. The same engine that powers the calculators on this site is available as a JSON API for your own applications.

Endpoints
73
Free tier
1,000/day
Latency p50
~70 ms

Quick start

No signup, no API key for the first 1,000 calls per IP per day. Just POST JSON.

curl -X POST https://api.quantoracle.dev/v1/options/price \
  -H "Content-Type: application/json" \
  -d '{"S":100,"K":100,"T":0.25,"r":0.05,"sigma":0.2,"option_type":"call"}'

# → {"price":4.615,"breakeven":104.615,"prob_itm":0.5299,
#    "greeks":{"delta":0.569,"gamma":0.039,"vega":0.196,
#              "theta":-0.029,"rho":0.131}, ...}

Endpoint catalog

See the full machine-readable spec at /openapi.json or the human-readable docs at /tools. Categories include:

Pricing

SDKs and integrations

Try it without writing code

Use the calculators on this site — every page is a thin wrapper around an API endpoint. View source on any calculator and you'll see the same POST body you can drop into your own client.