Brazil IPCA (latest month): index, MoM, YTD and 12-month inflation
API · /brazil-stats-api
Brazil Statistics API
Official Brazilian economic statistics straight from IBGE (Instituto Brasileiro de Geografia e Estatística) and its SIDRA service — no key, read live. The ipca endpoint returns the IPCA, Brazil's official consumer price index, for the latest month: the headline index (base December 1993 = 100), the month-on-month change, the year-to-date change and the all-important twelve-month inflation rate that the Banco Central targets. The ipca/series endpoint returns the historical monthly IPCA index, monthly change and twelve-month rate over the last N months, ready to chart. The aggregate endpoint is a thin live gateway to any SIDRA aggregate: pass an aggregate id, one or more variable ids, a period selector and a territorial level and it returns the parsed series — opening up thousands of IBGE tables (population, GDP, employment, industry, retail) beyond inflation. The regions endpoint lists Brazil's 27 federative units with their region grouping. Live data from IBGE SIDRA, lightly cached; decimal values parsed to numbers. Live. 5 endpoints. This serves Brazilian national statistics; for the BRL exchange rate or policy rate use a central-bank / FX API.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 436 ms
- Server probes · 24h
- Subscribers
- 3,103
- active
- Total calls
- 50
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 240 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 240 calls/month
- 2 req/sec
- All 5 endpoints
- Live IBGE SIDRA data
Basic
€10.80 /month
- 20,500 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 20.5k calls/month
- 6 req/sec
- IPCA + series + aggregates
- Region reference
- Email support
Pro
€28.80 /month
- 102,000 calls / month
- 22 requests / second
- Hard cap (429 above quota, no overage)
- 102k calls/month
- 22 req/sec
- High-volume access
- Full SIDRA gateway
- Priority support
Mega
€64.80 /month
- 455,000 calls / month
- 55 requests / second
- Hard cap (429 above quota, no overage)
- 455k calls/month
- 55 req/sec
- Dedicated throughput
- SLA-backed uptime
- Direct support
Built by
Related APIs
Other APIs with overlapping tags.
B3 Brazil Stock Exchange API
Live data from B3 (Brasil Bolsa Balcão), Latin America's largest stock exchange, with no key. Read the live snapshot for any ticker (close, day change, volume, market cap, sector); pull a sector-classified ranking of every listed stock, fund and BDR (by market cap or volume, filterable by sector and instrument type); list the B3 sectors and instrument types; and read the market indexes B3 tracks. The Brazil-equities / sector / market-cap-ranking layer for trading dashboards, screeners and fintech — distinct from other exchange readers, with a dedicated sector-classification cut. Live from the public brapi feed; short cache only.
api.oanor.com/b3-api
Mercado Bitcoin API
Live spot market data from Mercado Bitcoin, Brazil's largest and oldest crypto exchange — served straight from its public API, no key, nothing cached. Get a pair's last price, buy/sell, 24h high/low, open and 24h change (in Brazilian real); read live market depth with the best bid/ask and spread; and list 1,300+ trading pairs. A distinct Brazilian / Latin-American venue with real pricing, separate from other exchange feeds. Pairs are BASE-QUOTE (e.g. BTC-BRL).
api.oanor.com/mercadobitcoin-api
Banco Central do Brasil API
Live official Brazilian monetary and FX data, served straight from the Central Bank of Brazil's open SGS and PTAX APIs — no key, nothing cached. Brazil is the largest economy in Latin America and one of the highest-yielding major markets, and this exposes its headline numbers as clean JSON. The indicators endpoint returns the whole dashboard in one call: the Selic policy target rate set by the Copom, the CDI interbank rate, IPCA monthly and 12-month inflation, and the official USD/BRL and EUR/BRL PTAX exchange rates — in mid-2026 Selic sat at 14.50%, 12-month IPCA near 4.4% and the dollar around 5.17 reais. The selic endpoint returns the policy rate the Central Bank uses to steer the economy, with recent history. The inflation endpoint returns IPCA, Brazil's official consumer price index, both monthly and accumulated over twelve months. The exchange endpoint returns the official PTAX USD/BRL and EUR/BRL closing rates with recent history. The series endpoint exposes any of the thousands of time series in the Central Bank's SGS database by its numeric code, so you can pull Brazilian interest rates, prices, credit and monetary aggregates on demand. Everything is the Central Bank's own published data, live, nothing stored. This is the Brazil rates-and-FX layer for any fixed-income, forex, emerging-markets or macro app. Distinct from the ECB, Fed, Bank of Canada, Norges Bank and Bank of England APIs — this is Brazil's Selic, IPCA and the real. 6 endpoints, no key on our side.
api.oanor.com/bcb-api
Sweden Municipal Statistics API
Swedish municipal and regional statistics straight from Kolada — the open database run by the Council for the Promotion of Municipal Analyses (RKA) — no key, read live. Kolada holds roughly 6,000 key performance indicators tracking the finances and service quality of all 290 Swedish municipalities and 21 regions: personnel costs, school results, elderly care, waiting times, environment, demographics and much more. The kpis endpoint lists and searches the indicator catalogue by title. The kpi endpoint returns the full metadata of a single indicator (its definition, operating area and source). The municipalities endpoint lists every municipality and region with its official code. The data endpoint returns a chosen indicator's full annual value series for a given municipality, with the latest value highlighted. The meta endpoint documents the API. Live data from Kolada v3, lightly cached. Live. 5 endpoints. This serves Swedish public-sector statistics; for the krona exchange rate or national CPI use an FX / national-statistics API.
api.oanor.com/kolada-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Brazil Statistics API?
What's the rate limit for Brazil Statistics API?
How much does Brazil Statistics API cost?
Can I cancel my subscription anytime?
Is Brazil Statistics API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/brazil-stats-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/brazil-stats-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/brazil-stats-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/brazil-stats-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.