/v1/nowa
NOWA overnight benchmark
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/norgesbank-api/v1/nowa" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/norgesbank-api/v1/nowa", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/norgesbank-api/v1/nowa");
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/norgesbank-api/v1/nowa",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"date": "2026-06-08",
"name": "NOWA — Norwegian Overnight Weighted Average",
"source": "Norges Bank",
"history": [
{
"date": "2026-05-26",
"rate_pct": 4.25
},
{
"date": "2026-05-27",
"rate_pct": 4.25
},
{
"date": "2026-05-28",
"rate_pct": 4.25
},
{
"date": "2026-05-29",
"rate_pct": 4.25
},
{
"date": "2026-06-01",
"rate_pct": 4.25
},
{
"date": "2026-06-02",
"rate_pct": 4.25
},
{
"date": "2026-06-03",
"rate_pct": 4.25
},
{
"date": "2026-06-04",
"rate_pct": 4.25
},
{
"date": "2026-06-05",
"rate_pct": 4.25
},
{
"date": "2026-06-08",
"rate_pct": 4.25
}
],
"rate_pct": 4.25,
"turnover_mnok": 19625,
"reporting_banks": 11
},
"meta": {
"timestamp": "2026-06-09T11:38:50.637Z",
"request_id": "953ab4e6-b708-4b1f-9a9a-952f1e490391"
},
"status": "ok",
"message": "NOWA retrieved successfully",
"success": true
}