Convert USD to UZS
US Dollar → Uzbekistani Som
1 USD = 11,815.739 UZS(1 UZS = 0.0000846329 USD)
Currency converter
1 USD =
11,815.739 UZS
USD to UZS: last 30 days
Over the last 30 days, 1 USD traded between 11,732.338 and 11,844.711 UZS, averaging 11,799.64 UZS. The USD/UZS rate is up 0.08% since 2026-08-28.
- 30-day high
- 11,844.711
- 2026-09-19
- 30-day low
- 11,732.338
- 2026-09-15
- 30-day average
- 11,799.64
- Days with data: 30
- 30-day change
- +0.08%
- since 2026-08-28
11,844.711
11,732.3382026-08-28 → 2026-09-26
| Date | 1 USD in UZS | Daily change |
|---|---|---|
| 2026-09-26 | 11,815.739 | 0.00% |
| 2026-09-25 | 11,815.739 | -0.05% |
| 2026-09-24 | 11,821.396 | +0.29% |
| 2026-09-23 | 11,787.218 | -0.08% |
| 2026-09-22 | 11,797.078 | -0.32% |
| 2026-09-21 | 11,835.532 | -0.03% |
| 2026-09-20 | 11,839.453 | -0.04% |
| 2026-09-19 | 11,844.711 | +0.17% |
| 2026-09-18 | 11,824.996 | +0.34% |
| 2026-09-17 | 11,784.988 | +0.12% |
| 2026-09-16 | 11,771.215 | +0.33% |
| 2026-09-15 | 11,732.338 | -0.07% |
| 2026-09-14 | 11,740.016 | -0.23% |
| 2026-09-13 | 11,766.79 | -0.18% |
| 2026-09-12 | 11,787.606 | +0.01% |
| Date | 1 USD in UZS | Daily change |
|---|---|---|
| 2026-09-11 | 11,786.702 | -0.19% |
| 2026-09-10 | 11,808.804 | -0.00% |
| 2026-09-09 | 11,809.171 | +0.32% |
| 2026-09-08 | 11,771.497 | -0.06% |
| 2026-09-07 | 11,779.061 | -0.07% |
| 2026-09-06 | 11,787 | -0.05% |
| 2026-09-05 | 11,793.463 | +0.12% |
| 2026-09-04 | 11,779.559 | -0.11% |
| 2026-09-03 | 11,792.745 | -0.19% |
| 2026-09-02 | 11,815.233 | +0.03% |
| 2026-09-01 | 11,811.683 | -0.18% |
| 2026-08-31 | 11,833.446 | +0.08% |
| 2026-08-30 | 11,824.199 | -0.01% |
| 2026-08-29 | 11,825.103 | +0.16% |
| 2026-08-28 | 11,806.711 | — |
USD to UZS conversion table
1 USD11,815.739 UZS
5 USD59,078.693 UZS
10 USD118,157.39 UZS
25 USD295,393.46 UZS
50 USD590,786.93 UZS
100 USD1,181,573.9 UZS
500 USD5,907,869.3 UZS
1,000 USD11,815,739 UZS
5,000 USD59,078,693 UZS
10,000 USD118,157,386 UZS
Get the USD/UZS rate in your app
One GET request returns the latest USD → UZS rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/UZS"fetch('https://rate-api.com/api/v1/pair/USD/UZS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} UZS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/UZS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} UZS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/UZS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} UZS\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "UZS"
},
"rate": 11815.7386,
"timestamp": 1790429357,
"date": "2026-09-26"
}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.
Related conversions
UZS to USDUzbekistani Som → US Dollar0.000084633Convert USD to other currencies
Convert other currencies to UZS
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.