Convert USD to MVR
US Dollar → Maldivian Rufiyaa
1 USD = 15.459418 MVR(1 MVR = 0.0646855 USD)
Currency converter
1 USD =
15.4594 MVR
USD to MVR: last 30 days
Over the last 30 days, 1 USD traded between 15.4183 and 15.4681 MVR, averaging 15.455 MVR. The USD/MVR rate has not changed since 2026-08-28.
- 30-day high
- 15.4681
- 2026-08-29
- 30-day low
- 15.4183
- 2026-09-19
- 30-day average
- 15.455
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
15.4681
15.41832026-08-28 → 2026-09-26
| Date | 1 USD in MVR | Daily change |
|---|---|---|
| 2026-09-26 | 15.4594 | 0.00% |
| 2026-09-25 | 15.4594 | -0.00% |
| 2026-09-24 | 15.4596 | -0.00% |
| 2026-09-23 | 15.4597 | +0.00% |
| 2026-09-22 | 15.4594 | +0.07% |
| 2026-09-21 | 15.448 | +0.08% |
| 2026-09-20 | 15.435 | +0.11% |
| 2026-09-19 | 15.4183 | -0.21% |
| 2026-09-18 | 15.45 | +0.10% |
| 2026-09-17 | 15.434 | -0.06% |
| 2026-09-16 | 15.444 | -0.04% |
| 2026-09-15 | 15.4507 | -0.04% |
| 2026-09-14 | 15.4566 | -0.01% |
| 2026-09-13 | 15.4575 | +0.06% |
| 2026-09-12 | 15.4487 | -0.04% |
| Date | 1 USD in MVR | Daily change |
|---|---|---|
| 2026-09-11 | 15.4554 | -0.01% |
| 2026-09-10 | 15.4569 | +0.01% |
| 2026-09-09 | 15.4557 | -0.03% |
| 2026-09-08 | 15.4596 | +0.00% |
| 2026-09-07 | 15.4595 | -0.00% |
| 2026-09-06 | 15.4598 | +0.01% |
| 2026-09-05 | 15.4583 | -0.01% |
| 2026-09-04 | 15.4595 | -0.00% |
| 2026-09-03 | 15.4595 | -0.00% |
| 2026-09-02 | 15.4596 | -0.02% |
| 2026-09-01 | 15.4624 | -0.03% |
| 2026-08-31 | 15.4676 | -0.00% |
| 2026-08-30 | 15.4678 | -0.00% |
| 2026-08-29 | 15.4681 | +0.05% |
| 2026-08-28 | 15.4597 | — |
USD to MVR conversion table
1 USD15.4594 MVR
5 USD77.2971 MVR
10 USD154.5942 MVR
25 USD386.4855 MVR
50 USD772.9709 MVR
100 USD1,545.9418 MVR
500 USD7,729.709 MVR
1,000 USD15,459.418 MVR
5,000 USD77,297.09 MVR
10,000 USD154,594.18 MVR
Get the USD/MVR rate in your app
One GET request returns the latest USD → MVR 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/MVR"fetch('https://rate-api.com/api/v1/pair/USD/MVR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MVR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MVR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MVR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MVR');
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']} MVR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MVR"
},
"rate": 15.4594,
"timestamp": 1790429306,
"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
MVR to USDMaldivian Rufiyaa → US Dollar0.064685Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.