/v1/breakeven
Net premium, max profit/loss and breakevens only
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}