Vai al contenuto
GET /v1/changes

Global rate-cycle dashboard

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/bis-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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",
                "
…