Zum Inhalt springen
GET /v1/breakeven

Net premium, max profit/loss and breakevens only

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/optionstrategy-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/optionstrategy-api/v1/breakeven" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/optionstrategy-api/v1/breakeven", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/optionstrategy-api/v1/breakeven");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/optionstrategy-api/v1/breakeven",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "legs": [
            {
                "qty": 1,
                "type": "call",
                "entry": null,
                "strike": 100,
                "premium": 6
            },
            {
                "qty": -1,
                "type": "call",
                "entry": null,
                "strike": 110,
                "premium": 2
            }
        ],
        "source": "OPTIONSTRATEGY",
        "max_loss": -4,
        "position": "net debit",
        "spot_max": 220,
        "spot_min": 0,
        "breakevens": [
            104
        ],
        "max_profit": 6,
        "multiplier": 1,
        "max_loss_at": 0,
        "net_premium": 4,
        "max_profit_at": 110,
        "max_profit_unbounded": false
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:17.799Z",
        "request_id": "25530d84-192a-4dc7-ada8-c6857efa449d"
    },
    "status": "ok",
    "message": "Breakeven computed",
    "success": true
}