Aller au contenu
GET /v1/breakeven

Adverse spot move the carry cushions

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/carrytrade-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/carrytrade-api/v1/breakeven" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/carrytrade-api/v1/breakeven", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/carrytrade-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/carrytrade-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": {
        "days": 365,
        "spot": 150,
        "source": "CARRY",
        "breakeven_spot": 142.5,
        "interpretation": "positive carry: the spot can move 5% against the long currency over 365 days before the trade nets a loss",
        "differential_pct": 5,
        "carry_yield_period_pct": 5,
        "breakeven_adverse_move_pct": 5
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:22.504Z",
        "request_id": "b70e4a84-d45e-4e38-8322-16aaa4b47885"
    },
    "status": "ok",
    "message": "Breakeven computed",
    "success": true
}