Skip to content
GET /v1/meta

Spec

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/norgesbank-api

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

Get an API key

Code snippets

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

Example response

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

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