Net premium, max profit/loss and breakevens only
API · /optionstrategy-api
Option Strategy API
Live options-strategy payoff and analysis that options traders run before placing a trade — computed on demand, no key, nothing cached. Get the profit-at-expiry curve of any multi-leg position (calls, puts and stock) plus the net premium, maximum profit, maximum loss and breakeven points; pull just those headline numbers; or build a named strategy (straddle, strangle, bull/bear spread, covered call, protective put, iron condor) from friendly parameters and analyse it. Works for equity, FX or crypto options. A multi-leg payoff engine, distinct from single-option pricing tools: it turns a combination of legs into the profit profile, breakevens and risk a trader acts on.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 92 ms
- Server probes · 24h
- Subscribers
- 3,136
- active
- Total calls
- 5
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 4,750 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 4.75k calls/month
- 3 req/sec
- Payoff, breakeven & named strategies
- No credit card
Starter
€6.75 /month
- 107,000 calls / month
- 10 requests / second
- Hard cap (429 above quota, no overage)
- 107k calls/month
- 10 req/sec
- Email support
Pro
€18.25 /month
- 525,000 calls / month
- 25 requests / second
- Hard cap (429 above quota, no overage)
- 525k calls/month
- 25 req/sec
- Priority support
Business
€44.00 /month
- 3,220,000 calls / month
- 55 requests / second
- Hard cap (429 above quota, no overage)
- 3.22M calls/month
- 55 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Crypto Volatility API
Live crypto realized (historical) volatility as an API, computed from Binance daily candles. For any coin it returns the annualized realized volatility over the 7-, 30- and 90-day windows — the standard deviation of daily log returns, annualized over 365 days — the average true range as a percent of price, the current price, and a plain-language regime label (low, normal, high or extreme). It can also rank a basket of major coins by their 30-day volatility, so you can see at a glance which assets are calm and which are wild. The volatility layer that options pricing, position sizing and risk dashboards need. Live, no key, no cache. Distinct from price, OHLC and drawdown APIs — this is the realized-volatility analytic.
api.oanor.com/cryptovolatility-api
Crypto Options API
Live crypto options-market data as an API, streamed from the Deribit public exchange. For BTC, ETH, SOL and XRP: the full option chain with each contract's mark price, mark implied volatility, open interest, 24-hour volume and underlying price; the nearest at-the-money call and put for a one-call read on how the market prices risk; the spot index price; the historical realised-volatility series with stats; and a market-wide summary of open interest, volume and expiries. Built for options, volatility, quant and trading apps. Distinct from spot-price, funding and on-chain APIs — this is the live options surface.
api.oanor.com/cryptooptions-api
Black-Scholes Options API
Black-Scholes-Merton European option pricing as an API, computed locally and deterministically. The price endpoint computes the fair value of a European call and put from the spot price, strike, annualized risk-free rate, annualized volatility, time to expiry in years and an optional continuous dividend yield, using Call = S·e^(−qT)·N(d1) − K·e^(−rT)·N(d2) and the put-call-parity put, with d1 = [ln(S/K) + (r − q + σ²/2)·T]/(σ√T) and d2 = d1 − σ√T and a high-accuracy standard-normal CDF — an at-the-money option on a 100 spot with a 5 % rate, 20 % volatility and one year to expiry is worth about 10.45 for the call and 5.57 for the put. The greeks endpoint returns the full risk sensitivities for both call and put: delta (∂V/∂S), gamma (∂²V/∂S²), vega (∂V/∂σ, per 1.00 and per 1 % point), theta (∂V/∂t, per year and per calendar day) and rho (∂V/∂r). Rates, dividend yield and volatility are annualized and time is in years, continuous compounding. Everything is computed locally and deterministically, so it is instant and private. Ideal for fintech, trading, quant, portfolio-risk, derivatives and finance-education app developers, option-pricing and Greeks dashboards, and risk engines. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 2 endpoints. This is the European Black-Scholes model; for American-style early exercise or implied volatility solving it returns the closed-form European result only.
api.oanor.com/blackscholes-api
Options Pricing API
Black-Scholes option-pricing maths as an API, computed locally and deterministically. The black-scholes endpoint prices European call and put options from the spot price, strike, time to expiry, risk-free rate, volatility and an optional dividend yield — Call = S·e^(−qT)·Φ(d1) − K·e^(−rT)·Φ(d2) — returning both prices, the intermediate d1 and d2, and the put-call parity figure. The greeks endpoint computes the full set of option sensitivities for the call and the put: delta, gamma, theta (per year and per day), vega and rho, the quantities traders use to hedge and manage risk. The implied-volatility endpoint inverts the model, solving by bisection for the volatility that reproduces a given option market price. Rates, volatilities and dividend yields are decimals (0.05 = 5 %) and time to expiry is in years. Everything is computed locally and deterministically, so it is instant and private. Ideal for fintech, trading, quantitative-finance and derivatives app developers, options analytics and risk tools, and finance education. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This is options pricing; for NPV and IRR use an NPV API and for CAGR and real returns an investment API.
api.oanor.com/options-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Option Strategy API?
What's the rate limit for Option Strategy API?
How much does Option Strategy API cost?
Can I cancel my subscription anytime?
Is Option Strategy API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/optionstrategy-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/optionstrategy-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/optionstrategy-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/optionstrategy-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.