/v1/aggregate
Query any IBGE SIDRA aggregate
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/brazil-stats-api/v1/aggregate" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/brazil-stats-api/v1/aggregate", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/brazil-stats-api/v1/aggregate");
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/aggregate",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"level": "N1",
"source": "IBGE SIDRA",
"aggregate": "1737",
"variables": [
{
"name": "IPCA - Variação mensal",
"unit": "%",
"values": [
{
"value": 0.58,
"period": "202605",
"period_iso": "2026-05"
}
],
"variable_id": "63"
}
]
},
"meta": {
"timestamp": "2026-06-15T20:41:02.912Z",
"request_id": "b22e5bf5-4afc-4682-8a1b-d2bd5dc8b55a"
},
"status": "ok",
"message": "IBGE SIDRA aggregate retrieved",
"success": true
}