Convert USD to MUR
US Dollar → Mauritian Rupee
1 USD = 47.459049 MUR(1 MUR = 0.0210708 USD)
Currency converter
1 USD =
47.459 MUR
USD to MUR: last 30 days
Over the last 30 days, 1 USD traded between 46.8202 and 47.8664 MUR, averaging 47.1607 MUR. The USD/MUR rate is up 1.27% since 2026-08-28.
- 30-day high
- 47.8664
- 2026-09-24
- 30-day low
- 46.8202
- 2026-09-11
- 30-day average
- 47.1607
- Days with data: 30
- 30-day change
- +1.27%
- since 2026-08-28
47.8664
46.82022026-08-28 → 2026-09-26
| Date | 1 USD in MUR | Daily change |
|---|---|---|
| 2026-09-26 | 47.459 | 0.00% |
| 2026-09-25 | 47.459 | -0.85% |
| 2026-09-24 | 47.8664 | +0.46% |
| 2026-09-23 | 47.6487 | -0.05% |
| 2026-09-22 | 47.6711 | +0.20% |
| 2026-09-21 | 47.5772 | -0.02% |
| 2026-09-20 | 47.585 | -0.03% |
| 2026-09-19 | 47.5984 | -0.02% |
| 2026-09-18 | 47.6098 | +0.29% |
| 2026-09-17 | 47.4721 | +0.79% |
| 2026-09-16 | 47.1016 | +0.01% |
| 2026-09-15 | 47.0962 | +0.48% |
| 2026-09-14 | 46.8689 | -0.19% |
| 2026-09-13 | 46.9593 | +0.02% |
| 2026-09-12 | 46.9515 | +0.28% |
| Date | 1 USD in MUR | Daily change |
|---|---|---|
| 2026-09-11 | 46.8202 | -0.11% |
| 2026-09-10 | 46.872 | +0.03% |
| 2026-09-09 | 46.8581 | -0.09% |
| 2026-09-08 | 46.9002 | +0.08% |
| 2026-09-07 | 46.8612 | +0.04% |
| 2026-09-06 | 46.8414 | +0.04% |
| 2026-09-05 | 46.8242 | -0.18% |
| 2026-09-04 | 46.9095 | -0.69% |
| 2026-09-03 | 47.2337 | +0.34% |
| 2026-09-02 | 47.0759 | -0.03% |
| 2026-09-01 | 47.0913 | +0.17% |
| 2026-08-31 | 47.0106 | +0.30% |
| 2026-08-30 | 46.8707 | +0.01% |
| 2026-08-29 | 46.8658 | +0.01% |
| 2026-08-28 | 46.8625 | — |
USD to MUR conversion table
1 USD47.459 MUR
5 USD237.2953 MUR
10 USD474.5905 MUR
25 USD1,186.4762 MUR
50 USD2,372.9525 MUR
100 USD4,745.9049 MUR
500 USD23,729.525 MUR
1,000 USD47,459.049 MUR
5,000 USD237,295.25 MUR
10,000 USD474,590.49 MUR
Get the USD/MUR rate in your app
One GET request returns the latest USD → MUR 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/MUR"fetch('https://rate-api.com/api/v1/pair/USD/MUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MUR');
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']} MUR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MUR"
},
"rate": 47.459,
"timestamp": 1790429287,
"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
MUR to USDMauritian Rupee → US Dollar0.021071Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.