/v1/meta
Spec
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/norgesbank-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/norgesbank-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/norgesbank-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"source": "Norges Bank open data API (SDMX-JSON, live)",
"service": "norgesbank-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/nowa": "NOWA overnight benchmark with turnover and reporting-bank count + history.",
"GET /v1/yields": "Norwegian government bond generic yield curve (3Y/5Y/10Y) + 10y-3y spread.",
"GET /v1/policy_rate": "Norway's key policy rate (history=N for past values)."
},
"description": "Live official monetary data from Norges Bank, Norway's central bank: the key policy rate (sight-deposit rate) with effective date and history; NOWA, the Norwegian Overnight Weighted Average krone benchmark, with daily turnover and reporting-bank count; and the Norwegian government bond generic yield curve (3/5/10 years). Live, no key, nothing stored. Distinct from the ECB, Fed and Bank of Canada APIs — this is Norway's policy rate, the NOWA benchmark and Norwegian government yields.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:38:51.254Z",
"request_id": "a102a3b9-cb56-4ce9-b6fa-165fb825f86c"
},
"status": "ok",
"message": "Meta",
"success": true
}