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

# Monedas

> ~43 monedas internacionales en bolivianos.

Cotizaciones de \~43 monedas internacionales en bolivianos (`bob_por_unidad`). Se muestran 3 de ejemplo.

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

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

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

<ResponseExample>
  ```json 200 theme={"system"}
  {
    "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": "Datos informativos sin garantía. Uso bajo su responsabilidad."
  }
  ```
</ResponseExample>
