/v1/aggregate
Query any IBGE SIDRA aggregate
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}