/v1/policy_rates
Every central bank policy rate, ranked
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/bis-api/v1/policy_rates" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bis-api/v1/policy_rates", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bis-api/v1/policy_rates");
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/policy_rates",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"unit": "% per year",
"count": 39,
"rates": [
{
"as_of": "2026-05",
"country": "Türkiye",
"country_code": "TR",
"policy_rate_pct": 37
},
{
"as_of": "2025-06",
"country": "Argentina",
"country_code": "AR",
"policy_rate_pct": 29
},
{
"as_of": "2026-05",
"country": "Russia",
"country_code": "RU",
"policy_rate_pct": 14.5
},
{
"as_of": "2026-05",
"country": "Brazil",
"country_code": "BR",
"policy_rate_pct": 14.5
},
{
"as_of": "2026-05",
"country": "Colombia",
"country_code": "CO",
"policy_rate_pct": 11.25
},
{
"as_of": "2026-05",
"country": "Iceland",
"country_code": "IS",
"policy_rate_pct": 7.75
},
{
"as_of": "2026-05",
"country": "South Africa",
"country_code": "ZA",
"policy_rate_pct": 7
},
{
"as_of": "2026-05",
"country": "Mexico",
"country_code": "MX",
"policy_rate_pct": 6.5
},
{
"as_of": "2026-05",
"country": "Romania",
"country_code": "RO",
"policy_rate_pct": 6.5
},
{
"as_of": "2026-04",
"country": "Hungary",
"country_code": "HU",
"policy_rate_pct": 6.25
},
{
"as_of": "2026-05",
"country": "Serbia",
"country_code": "RS",
"policy_rate_pct": 5.75
},
{
"as_of": "2026-03",
"country": "India",
"country_code": "IN",
"policy_rate_pct": 5.25
},
{
"as_of": "2026-04",
"country": "Indonesia",
"country_code": "ID",
"policy_rate_pct": 4.75
},
{
"as_of": "2026-05",
"country": "Chile",
"country_code": "CL",
"policy_rate_pct": 4.5
},
{
"as_of": "2026-05",
"country": "Philippines",
"country_code": "PH",
"policy_rate_pct": 4.5
},
{
"as_of": "2026-05",
"country": "Peru",
"country_code": "PE",
"policy_rate_pct": 4.25
},
{
…