Convert USD to MMK
US Dollar → Myanmar Kyat
1 USD = 2,099.4756 MMK(1 MMK = 0.000476309 USD)
Currency converter
1 USD =
2,099.4756 MMK
USD to MMK: last 30 days
Over the last 30 days, 1 USD traded between 2,099.0115 and 2,100.2342 MMK, averaging 2,099.6561 MMK. The USD/MMK rate is down 0.01% since 2026-08-28.
- 30-day high
- 2,100.2342
- 2026-09-05
- 30-day low
- 2,099.0115
- 2026-09-02
- 30-day average
- 2,099.6561
- Days with data: 30
- 30-day change
- -0.01%
- since 2026-08-28
2,100.2342
2,099.01152026-08-28 → 2026-09-26
| Date | 1 USD in MMK | Daily change |
|---|---|---|
| 2026-09-26 | 2,099.4756 | 0.00% |
| 2026-09-25 | 2,099.4756 | -0.01% |
| 2026-09-24 | 2,099.7082 | +0.02% |
| 2026-09-23 | 2,099.2788 | -0.04% |
| 2026-09-22 | 2,100.078 | +0.03% |
| 2026-09-21 | 2,099.4355 | -0.01% |
| 2026-09-20 | 2,099.6016 | -0.01% |
| 2026-09-19 | 2,099.7287 | +0.00% |
| 2026-09-18 | 2,099.6919 | -0.01% |
| 2026-09-17 | 2,099.9015 | -0.00% |
| 2026-09-16 | 2,099.927 | +0.01% |
| 2026-09-15 | 2,099.7593 | -0.00% |
| 2026-09-14 | 2,099.766 | -0.00% |
| 2026-09-13 | 2,099.8211 | +0.01% |
| 2026-09-12 | 2,099.5401 | +0.00% |
| Date | 1 USD in MMK | Daily change |
|---|---|---|
| 2026-09-11 | 2,099.5342 | +0.01% |
| 2026-09-10 | 2,099.2759 | -0.01% |
| 2026-09-09 | 2,099.447 | -0.01% |
| 2026-09-08 | 2,099.6003 | -0.00% |
| 2026-09-07 | 2,099.6758 | -0.00% |
| 2026-09-06 | 2,099.7376 | -0.02% |
| 2026-09-05 | 2,100.2342 | +0.04% |
| 2026-09-04 | 2,099.4233 | -0.03% |
| 2026-09-03 | 2,100.0038 | +0.05% |
| 2026-09-02 | 2,099.0115 | -0.04% |
| 2026-09-01 | 2,099.9223 | +0.01% |
| 2026-08-31 | 2,099.753 | +0.00% |
| 2026-08-30 | 2,099.7364 | +0.01% |
| 2026-08-29 | 2,099.4398 | -0.01% |
| 2026-08-28 | 2,099.6997 | — |
USD to MMK conversion table
1 USD2,099.4756 MMK
5 USD10,497.378 MMK
10 USD20,994.756 MMK
25 USD52,486.89 MMK
50 USD104,973.78 MMK
100 USD209,947.56 MMK
500 USD1,049,737.8 MMK
1,000 USD2,099,475.6 MMK
5,000 USD10,497,378 MMK
10,000 USD20,994,756 MMK
Get the USD/MMK rate in your app
One GET request returns the latest USD → MMK 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/MMK"fetch('https://rate-api.com/api/v1/pair/USD/MMK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MMK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MMK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MMK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MMK');
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']} MMK\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MMK"
},
"rate": 2099.4756,
"timestamp": 1790429360,
"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
MMK to USDMyanmar Kyat → US Dollar0.00047631Convert USD to other currencies
Convert other currencies to MMK
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.