Convert UYU to USD
Uruguayan Peso → US Dollar
1 UYU = 0.0249623 USD(1 USD = 40.060471 UYU)
Currency converter
1 UYU =
0.024962 USD
UYU to USD: last 30 days
Over the last 30 days, 1 UYU traded between 0.024709 and 0.024962 USD, averaging 0.024859 USD. The UYU/USD rate is up 0.23% since 2026-08-28.
- 30-day high
- 0.024962
- 2026-09-25
- 30-day low
- 0.024709
- 2026-08-31
- 30-day average
- 0.024859
- Days with data: 30
- 30-day change
- +0.23%
- since 2026-08-28
0.024962
0.0247092026-08-28 → 2026-09-26
| Date | 1 UYU in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.024962 | 0.00% |
| 2026-09-25 | 0.024962 | +0.41% |
| 2026-09-24 | 0.024861 | -0.01% |
| 2026-09-23 | 0.024862 | -0.01% |
| 2026-09-22 | 0.024865 | -0.09% |
| 2026-09-21 | 0.024887 | -0.09% |
| 2026-09-20 | 0.02491 | +0.15% |
| 2026-09-19 | 0.024873 | -0.01% |
| 2026-09-18 | 0.024875 | +0.60% |
| 2026-09-17 | 0.024728 | -0.67% |
| 2026-09-16 | 0.024895 | +0.03% |
| 2026-09-15 | 0.024888 | -0.02% |
| 2026-09-14 | 0.024892 | +0.33% |
| 2026-09-13 | 0.024811 | -0.25% |
| 2026-09-12 | 0.024872 | +0.17% |
| Date | 1 UYU in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.024829 | -0.10% |
| 2026-09-10 | 0.024854 | -0.09% |
| 2026-09-09 | 0.024875 | +0.10% |
| 2026-09-08 | 0.02485 | +0.03% |
| 2026-09-07 | 0.024843 | -0.05% |
| 2026-09-06 | 0.024855 | +0.03% |
| 2026-09-05 | 0.024847 | -0.19% |
| 2026-09-04 | 0.024893 | +0.10% |
| 2026-09-03 | 0.024869 | +0.29% |
| 2026-09-02 | 0.024796 | -0.21% |
| 2026-09-01 | 0.024848 | +0.56% |
| 2026-08-31 | 0.024709 | -0.47% |
| 2026-08-30 | 0.024827 | -0.01% |
| 2026-08-29 | 0.024829 | -0.31% |
| 2026-08-28 | 0.024906 | — |
UYU to USD conversion table
1 UYU0.024962 USD
5 UYU0.12481 USD
10 UYU0.24962 USD
25 UYU0.62406 USD
50 UYU1.2481 USD
100 UYU2.4962 USD
500 UYU12.4811 USD
1,000 UYU24.9623 USD
5,000 UYU124.8113 USD
10,000 UYU249.6226 USD
Get the UYU/USD rate in your app
One GET request returns the latest UYU → USD 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/UYU/USD"fetch('https://rate-api.com/api/v1/pair/UYU/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 UYU = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/UYU/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 UYU = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/UYU/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 UYU = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "UYU",
"to": "USD"
},
"rate": 0.025,
"timestamp": 1790435210,
"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
USD to UYUUS Dollar → Uruguayan Peso40.0605Convert UYU to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.