/v1/indicators
Headline dashboard
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/bcb-api/v1/indicators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bcb-api/v1/indicators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bcb-api/v1/indicators");
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/bcb-api/v1/indicators",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "Banco Central do Brasil",
"country": "Brazil",
"eur_brl": {
"date": "2026-06-08",
"value": 5.9682
},
"usd_brl": {
"date": "2026-06-08",
"value": 5.1695
},
"currency": "BRL",
"ipca_12m_pct": {
"date": "2026-04-01",
"value": 4.39
},
"cdi_daily_pct": {
"date": "2026-06-05",
"value": 0.0534
},
"ipca_month_pct": {
"date": "2026-04-01",
"value": 0.67
},
"selic_target_pct": {
"date": "2026-06-17",
"value": 14.5
}
},
"meta": {
"timestamp": "2026-06-09T11:38:31.003Z",
"request_id": "9c7661db-9976-4c95-923b-9ee33388f62f"
},
"status": "ok",
"message": "Indicators retrieved successfully",
"success": true
}