> ## 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.

# Todos los indicadores

> Todos los indicadores del BCB en un objeto.

Devuelve todos los indicadores en una sola respuesta (TC oficial, UFV, oro, monedas, SOFR, DEG/SDR, inflación).

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

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

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

<ResponseExample>
  ```json 200 theme={"system"}
  {
    "tc_oficial": {
      "regimen": "flexible",
      "valor": 9.76,
      "base": 9.76,
      "compra": 9.76,
      "venta": 9.86,
      "moneda": "USD/BOB",
      "fecha": "2026-06-30",
      "fecha_publicacion": "2026-06-29",
      "nota": "Tipo de Cambio Oficial flexible (RD BCB 88/2026).",
      "proxima": null,
      "actualizado": "2026-06-30T23:10:00+00:00",
      "proxima_publicacion": "2026-07-01T20:00:00-04:00"
    },
    "ufv": {
      "valor": 3.29272,
      "moneda": "BOB",
      "fecha": "2026-06-29"
    },
    "oro": {
      "usd_otf": 4068.29,
      "plata_usd_otf": 58.6241,
      "fecha": "2026-06-29"
    },
    "sofr": {
      "tasa_pct": 3.64,
      "fecha": "2026-06-29"
    },
    "sdr": {
      "valor": 1.35615,
      "moneda": "USD/DEG",
      "fecha": "2026-06-29"
    },
    "inflacion": {
      "ipc": 147.63,
      "mensual_pct": -0.34,
      "anual_pct": 15.05,
      "fecha": "2026-03"
    },
    "monedas": {
      "fecha": "2026-06-29",
      "cotizaciones": [
        {
          "codigo": "EUR",
          "nombre": "Euro",
          "pais": "Unión Europea",
          "bob_por_unidad": 11.08247
        },
        {
          "codigo": "BRL",
          "nombre": "Real",
          "pais": "Brasil",
          "bob_por_unidad": 1.88143
        },
        {
          "codigo": "PEN",
          "nombre": "Nuevo Sol",
          "pais": "Perú",
          "bob_por_unidad": 2.85086
        }
      ]
    },
    "fuente": "Banco Central de Bolivia (bcb.gob.bo)",
    "disclaimer": "API independiente, no afiliada ni avalada por el Banco Central de Bolivia. Datos tomados de cifras públicas del BCB (bcb.gob.bo), con fines informativos; no es el registro oficial. Sin garantía; uso bajo su responsabilidad."
  }
  ```
</ResponseExample>
