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

# SOFR

> Tasa SOFR (Secured Overnight Financing Rate).

Tasa SOFR publicada por el BCB.

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

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

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

<ResponseExample>
  ```json 200 theme={"system"}
  {
    "sofr": {
      "tasa_pct": 3.64,
      "fecha": "2026-06-29"
    },
    "fuente": "Banco Central de Bolivia (bcb.gob.bo)",
    "disclaimer": "Datos informativos sin garantía. Uso bajo su responsabilidad."
  }
  ```
</ResponseExample>
