/v1/ipca
Brazil IPCA (latest month): index, MoM, YTD and 12-month inflation
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/brazil-stats-api/v1/ipca" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/brazil-stats-api/v1/ipca", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/brazil-stats-api/v1/ipca");
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/brazil-stats-api/v1/ipca",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"index": 7640.15,
"period": "202605",
"source": "IBGE (Instituto Brasileiro de Geografia e Estatística) — SIDRA aggregate 1737",
"country": "Brazil",
"indicator": "IPCA — Índice Nacional de Preços ao Consumidor Amplo (official consumer price index)",
"index_base": "December 1993 = 100",
"period_iso": "2026-05",
"change_12m_pct": 4.72,
"change_ytd_pct": 3.2,
"change_month_pct": 0.58
},
"meta": {
"timestamp": "2026-06-15T20:41:02.093Z",
"request_id": "235c8531-410a-4790-a6d6-f3f5383583fa"
},
"status": "ok",
"message": "Brazil IPCA retrieved",
"success": true
}