Uzbekistani Som (UZS) so'm
Uzbekistani Som exchange rates against major world currencies, checked hourly and updated as sources publish.
1 UZS = 0.0000846329 USD
1 UZS in other currencies
UZS to USDUS Dollar0.000084633UZS to EUREuro0.00007422UZS to GBPBritish Pound0.000063862UZS to JPYJapanese Yen0.013337UZS to CNYChinese Yuan0.00056816UZS to CADCanadian Dollar0.00011969UZS to AUDAustralian Dollar0.00012038UZS to CHFSwiss Franc0.000070101UZS to INRIndian Rupee0.0081093UZS to RUBRussian Ruble0.0071949
Convert to UZS
USD to UZSUS Dollar11,815.739EUR to UZSEuro13,473.487GBP to UZSBritish Pound15,658.652JPY to UZSJapanese Yen74.9777CNY to UZSChinese Yuan1,760.0667CAD to UZSCanadian Dollar8,354.6144AUD to UZSAustralian Dollar8,306.7119CHF to UZSSwiss Franc14,265.206INR to UZSIndian Rupee123.3153RUB to UZSRussian Ruble138.9873
Get UZS rates in your app
One GET request returns every rate against UZS 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=UZS"fetch('https://rate-api.com/api/v1/latest?base=UZS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 UZS = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=UZS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 UZS = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=UZS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 UZS = {$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.