Skip to content
GET /v1/breakeven

Adverse spot move the carry cushions

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/carrytrade-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

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