/v1/meta
API metadata
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/brazil-stats-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/brazil-stats-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"api": "Statistics of Brazil (IBGE) API",
"notes": "Live data from IBGE's SIDRA service. The aggregate endpoint can query any SIDRA aggregate/variable for any territorial level.",
"source": "IBGE — Instituto Brasileiro de Geografia e Estatística, SIDRA REST API (servicodados.ibge.gov.br)",
"country": "Brazil",
"endpoints": [
"/v1/ipca",
"/v1/ipca/series",
"/v1/aggregate",
"/v1/regions",
"/v1/meta"
],
"documentation": "https://api.oanor.com/brazil-stats-api",
"primary_indicator": "IPCA — official consumer price index (SIDRA aggregate 1737, monthly, base Dec 1993=100)"
},
"meta": {
"timestamp": "2026-06-15T20:41:03.300Z",
"request_id": "34e459c6-351b-4457-baa2-0030112afbfd"
},
"status": "ok",
"message": "Meta",
"success": true
}