Chilean Peso (CLP) $
Chilean Peso exchange rates against major world currencies, checked hourly and updated as sources publish.
1 CLP = 0.00103816 USD
1 CLP in other currencies
CLP to USDUS Dollar0.0010382CLP to EUREuro0.00091043CLP to GBPBritish Pound0.00078338CLP to JPYJapanese Yen0.1636CLP to CNYChinese Yuan0.0069694CLP to CADCanadian Dollar0.0014682CLP to AUDAustralian Dollar0.0014767CLP to CHFSwiss Franc0.0008599CLP to INRIndian Rupee0.099474CLP to RUBRussian Ruble0.088257
Convert to CLP
USD to CLPUS Dollar963.2435EUR to CLPEuro1,098.3865GBP to CLPBritish Pound1,276.5257JPY to CLPJapanese Yen6.1123CNY to CLPChinese Yuan143.4843CAD to CLPCanadian Dollar681.0855AUD to CLPAustralian Dollar677.1803CHF to CLPSwiss Franc1,162.9291INR to CLPIndian Rupee10.0529RUB to CLPRussian Ruble11.3305
Get CLP rates in your app
One GET request returns every rate against CLP 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=CLP"fetch('https://rate-api.com/api/v1/latest?base=CLP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CLP = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=CLP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CLP = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=CLP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CLP = {$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-26. For developers: query these via the Rate-API REST API.