/v1/implied
Solve one interest rate from a quoted forward
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/fxforward-api/v1/implied" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxforward-api/v1/implied", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxforward-api/v1/implied");
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/fxforward-api/v1/implied",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"days": 360,
"pair": "EUR/USD",
"spot": 1.1,
"given": "rate_base",
"source": "FXFORWARD",
"forward": 1.1213,
"tenor_years": 1,
"daycount_basis": 360,
"implied_rate_pct": 4.9945,
"implied_rate_base": null,
"implied_rate_quote": 0.049945
},
"meta": {
"timestamp": "2026-06-10T22:56:12.235Z",
"request_id": "f4002ecb-8cd4-4791-b893-7ae1013949b4"
},
"status": "ok",
"message": "Implied rate computed",
"success": true
}