/v1/changes
Global rate-cycle dashboard
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/changes" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bis-api/v1/changes", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bis-api/v1/changes");
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/changes",
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": {
"note": "compares the two most recent monthly readings per central bank",
"source": "Bank for International Settlements",
"changes": [
{
"as_of": "2026-05",
"country": "Israel",
"direction": "cut",
"change_bps": -25,
"country_code": "IL",
"policy_rate_pct": 3.75
},
{
"as_of": "2026-05",
"country": "Iceland",
"direction": "hike",
"change_bps": 25,
"country_code": "IS",
"policy_rate_pct": 7.75
},
{
"as_of": "2026-05",
"country": "Norway",
"direction": "hike",
"change_bps": 25,
"country_code": "NO",
"policy_rate_pct": 4.25
},
{
"as_of": "2026-05",
"country": "Mexico",
"direction": "cut",
"change_bps": -25,
"country_code": "MX",
"policy_rate_pct": 6.5
},
{
"as_of": "2026-05",
"country": "South Africa",
"direction": "hike",
"change_bps": 25,
"country_code": "ZA",
"policy_rate_pct": 7
},
{
"as_of": "2026-05",
"country": "Canada",
"direction": "hold",
"change_bps": 0,
"country_code": "CA",
"policy_rate_pct": 2.25
},
{
"as_of": "2025-06",
"country": "Argentina",
"direction": "hold",
"change_bps": 0,
"country_code": "AR",
"policy_rate_pct": 29
},
{
"as_of": "2026-05",
"country": "Denmark",
"direction": "hold",
"change_bps": 0,
"country_code": "DK",
"policy_rate_pct": 1.6
},
{
"as_of": "2026-05",
"country": "Czechia",
"direction": "hold",
"change_bps": 0,
"country_code": "CZ",
"policy_rate_pct": 3.5
},
{
"as_of": "2026-05",
"country": "China",
"direction": "hold",
"change_bps": 0,
"country_code": "CN",
"policy_rate_pct": 3
},
{
"as_of": "2026-05",
"country": "Colombia",
"direction": "hold",
"change_bps": 0,
"country_code": "CO",
"policy_rate_pct": 11.25
},
{
"as_of": "2026-05",
"
…