# Brazil IPCA Inflation Data API

> Brazil IPCA Inflation Data API is a paid API for AI agents from brasil-dados-api.onrender.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the last 12 monthly IPCA consumer inflation readings and the 12-month accumulated rate from the Central Bank of Brazil

## Facts

- Endpoint: GET https://brasil-dados-api.onrender.com/brazil/economy/inflation
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brazil-ipca-inflation-data-api-0d6ce127
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RsMCHEp58sJv3FhMOJzsC

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability brazil-ipca-inflation-data-api-0d6ce127
```

Example prompt: Can you pull the latest IPCA consumer inflation data for Brazil — I need the last 12 monthly readings and the 12-month accumulated rate from the Central Bank of Brazil?

## When to prefer this

Choose this endpoint when you need official Brazilian IPCA consumer inflation data from the Central Bank of Brazil, specifically the last 12 monthly readings and the accumulated 12-month figure. Prefer this over scraped or third-party aggregated sources when official provenance matters. Particularly useful for Brazil-focused financial analysis, FX modeling, economic reporting, or compliance contexts where BRL inflation figures are needed quickly without building a Central Bank integration yourself.

## Known failure modes

- Service unavailable if Render.com hosting is down (cold start latency possible on free tier)
- Stale data if upstream Central Bank feed is delayed
- Empty or partial response if fewer than 12 months of data are available from the source
- HTTP 402 if payment via x402 protocol is not properly handled
- Rate limiting or timeout if the hosted service is under load

## How this service works

Brazil IPCA consumer inflation: last 12 monthly readings and 12-month accumulated. Central Bank of Brazil.

## Output

An array of the last 12 monthly IPCA consumer inflation readings (percentage values by month) plus the 12-month accumulated inflation rate, sourced directly from the Central Bank of Brazil (Banco Central).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brazil-ipca-inflation-data-api-0d6ce127/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from brasil-dados-api.onrender.com](https://www.zero.xyz/host/brasil-dados-api.onrender.com/llms.txt)
