Aller au contenu
GET /v1/breakeven

Net premium, max profit/loss and breakevens only

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/optionstrategy-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}