> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cucu.bo/llms.txt
> Use this file to discover all available pages before exploring further.

# Inflación

> IPC, variación mensual y a 12 meses.

Índice de Precios al Consumidor (IPC) y variaciones mensual y a 12 meses.

<RequestExample>
  ```bash cURL theme={"system"}
  curl https://bcb.cucu.bo/api/v1/tc/inflacion
  ```

  ```javascript JavaScript theme={"system"}
  const res = await fetch('https://bcb.cucu.bo/api/v1/tc/inflacion');
  const data = await res.json();
  ```

  ```python Python theme={"system"}
  import requests
  data = requests.get('https://bcb.cucu.bo/api/v1/tc/inflacion').json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"system"}
  {
    "inflacion": {
      "ipc": 147.63,
      "mensual_pct": -0.34,
      "anual_pct": 15.05,
      "fecha": "2026-03"
    },
    "fuente": "Banco Central de Bolivia (bcb.gob.bo)",
    "disclaimer": "Datos informativos sin garantía. Uso bajo su responsabilidad."
  }
  ```
</ResponseExample>
