/v1/meta
Spec
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/bis-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bis-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bis-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/bis-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "Bank for International Settlements stats API — WS_CBPOL (live)",
"service": "bis-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/changes": "Global rate-cycle dashboard — who hiked, cut or held.",
"GET /v1/country": "One central bank's policy rate + history + last move (country=US, GB, JP, XM).",
"GET /v1/policy_rates": "Every central bank's current policy rate, ranked (all=true to include legacy/euro-legacy series)."
},
"description": "The headline policy rate of every major central bank in the world, side by side, from the Bank for International Settlements' open statistics (WS_CBPOL): the current rate for ~40 monetary authorities (Fed, ECB, BoE, BoJ and more) ranked in one call; one central bank's policy rate with full history and its latest move; and a global rate-cycle dashboard reporting who has hiked, cut or held with the size of the move. Live, no key, nothing stored; rates are monthly. Distinct from single-central-bank APIs — this is every central bank's policy rate in one place, from the BIS.",
"central_banks": 48,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T20:24:51.172Z",
"request_id": "4d085d83-02dc-4dae-8808-7c28a8635204"
},
"status": "ok",
"message": "Meta",
"success": true
}