/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}