Ugandan Shilling (UGX) USh
Ugandan Shilling exchange rates against major world currencies, checked hourly and updated as sources publish.
1 UGX = 0.000254558 USD
1 UGX in other currencies
UGX to USDUS Dollar0.00025456UGX to EUREuro0.00022324UGX to GBPBritish Pound0.00019209UGX to JPYJapanese Yen0.040116UGX to CNYChinese Yuan0.0017089UGX to CADCanadian Dollar0.00036002UGX to AUDAustralian Dollar0.00036209UGX to CHFSwiss Franc0.00021085UGX to INRIndian Rupee0.024391UGX to RUBRussian Ruble0.021641
Convert to UGX
USD to UGXUS Dollar3,928.3727EUR to UGXEuro4,479.5234GBP to UGXBritish Pound5,206.0241JPY to UGXJapanese Yen24.9278CNY to UGXChinese Yuan585.1685CAD to UGXCanadian Dollar2,777.6545AUD to UGXAustralian Dollar2,761.7284CHF to UGXSwiss Franc4,742.7458INR to UGXIndian Rupee40.9986RUB to UGXRussian Ruble46.209
Get UGX rates in your app
One GET request returns every rate against UGX 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=UGX"fetch('https://rate-api.com/api/v1/latest?base=UGX', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 UGX = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=UGX",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 UGX = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=UGX');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 UGX = {$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.