Convert USD to UYU
US Dollar → Uruguayan Peso
1 USD = 40.060471 UYU(1 UYU = 0.0249623 USD)
Currency converter
1 USD =
40.0605 UYU
USD to UYU: last 30 days
Over the last 30 days, 1 USD traded between 40.0605 and 40.4703 UYU, averaging 40.2269 UYU. The USD/UYU rate is down 0.22% since 2026-08-28.
- 30-day high
- 40.4703
- 2026-08-31
- 30-day low
- 40.0605
- 2026-09-25
- 30-day average
- 40.2269
- Days with data: 30
- 30-day change
- -0.22%
- since 2026-08-28
40.4703
40.06052026-08-28 → 2026-09-26
| Date | 1 USD in UYU | Daily change |
|---|---|---|
| 2026-09-26 | 40.0605 | 0.00% |
| 2026-09-25 | 40.0605 | -0.41% |
| 2026-09-24 | 40.2244 | +0.01% |
| 2026-09-23 | 40.2222 | +0.01% |
| 2026-09-22 | 40.2179 | +0.09% |
| 2026-09-21 | 40.182 | +0.09% |
| 2026-09-20 | 40.1449 | -0.15% |
| 2026-09-19 | 40.2045 | +0.01% |
| 2026-09-18 | 40.2005 | -0.59% |
| 2026-09-17 | 40.4401 | +0.68% |
| 2026-09-16 | 40.1683 | -0.03% |
| 2026-09-15 | 40.1797 | +0.02% |
| 2026-09-14 | 40.1735 | -0.33% |
| 2026-09-13 | 40.3055 | +0.25% |
| 2026-09-12 | 40.2053 | -0.17% |
| Date | 1 USD in UYU | Daily change |
|---|---|---|
| 2026-09-11 | 40.2748 | +0.10% |
| 2026-09-10 | 40.2357 | +0.09% |
| 2026-09-09 | 40.2008 | -0.10% |
| 2026-09-08 | 40.2414 | -0.03% |
| 2026-09-07 | 40.2528 | +0.05% |
| 2026-09-06 | 40.2336 | -0.03% |
| 2026-09-05 | 40.2462 | +0.19% |
| 2026-09-04 | 40.1714 | -0.10% |
| 2026-09-03 | 40.211 | -0.29% |
| 2026-09-02 | 40.3291 | +0.21% |
| 2026-09-01 | 40.2439 | -0.56% |
| 2026-08-31 | 40.4703 | +0.47% |
| 2026-08-30 | 40.2792 | +0.01% |
| 2026-08-29 | 40.2752 | +0.31% |
| 2026-08-28 | 40.1508 | — |
USD to UYU conversion table
1 USD40.0605 UYU
5 USD200.3024 UYU
10 USD400.6047 UYU
25 USD1,001.5118 UYU
50 USD2,003.0236 UYU
100 USD4,006.0471 UYU
500 USD20,030.236 UYU
1,000 USD40,060.471 UYU
5,000 USD200,302.36 UYU
10,000 USD400,604.71 UYU
Get the USD/UYU rate in your app
One GET request returns the latest USD → UYU 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/UYU"fetch('https://rate-api.com/api/v1/pair/USD/UYU', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} UYU`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/UYU",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} UYU")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/UYU');
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']} UYU\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "UYU"
},
"rate": 40.0605,
"timestamp": 1790447443,
"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
UYU to USDUruguayan Peso → US Dollar0.024962Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.