Chilean Unit of Account (UF) (CLF) UF
Chilean Unit of Account (UF) exchange rates against major world currencies, checked hourly and updated as sources publish.
1 CLF = 42.668031 USD
1 CLF in other currencies
Convert to CLF
USD to CLFUS Dollar0.023437EUR to CLFEuro0.026725GBP to CLFBritish Pound0.031059JPY to CLFJapanese Yen0.00014872CNY to CLFChinese Yuan0.0034911CAD to CLFCanadian Dollar0.016572AUD to CLFAustralian Dollar0.016477CHF to CLFSwiss Franc0.028295INR to CLFIndian Rupee0.0002446RUB to CLFRussian Ruble0.00027774
Get CLF rates in your app
One GET request returns every rate against CLF as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=CLF"fetch('https://rate-api.com/api/v1/latest?base=CLF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CLF = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=CLF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CLF = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=CLF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CLF = {$data['rates']['USD']} USD\n";Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Rates as of 2026-09-27. For developers: query these via the Rate-API REST API.