Cambodian Riel (KHR) ៛
Cambodian Riel exchange rates against major world currencies, checked hourly and updated as sources publish.
1 KHR = 0.000245958 USD
1 KHR in other currencies
KHR to USDUS Dollar0.00024596KHR to EUREuro0.0002157KHR to GBPBritish Pound0.0001856KHR to JPYJapanese Yen0.038761KHR to CNYChinese Yuan0.0016512KHR to CADCanadian Dollar0.00034785KHR to AUDAustralian Dollar0.00034986KHR to CHFSwiss Franc0.00020372KHR to INRIndian Rupee0.023567KHR to RUBRussian Ruble0.02091
Convert to KHR
USD to KHRUS Dollar4,065.7383EUR to KHREuro4,636.1614GBP to KHRBritish Pound5,388.066JPY to KHRJapanese Yen25.7995CNY to KHRChinese Yuan605.6304CAD to KHRCanadian Dollar2,874.7823AUD to KHRAustralian Dollar2,858.2993CHF to KHRSwiss Franc4,908.588INR to KHRIndian Rupee42.4322RUB to KHRRussian Ruble47.8249
Get KHR rates in your app
One GET request returns every rate against KHR 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=KHR"fetch('https://rate-api.com/api/v1/latest?base=KHR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 KHR = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=KHR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 KHR = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=KHR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 KHR = {$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.