/v1/changes
Global rate-cycle dashboard
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/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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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",
"
…