Myanmar Kyat (MMK) K
Myanmar Kyat exchange rates against major world currencies, checked hourly and updated as sources publish.
1 MMK = 0.000476309 USD
1 MMK in other currencies
MMK to USDUS Dollar0.00047631MMK to EUREuro0.00041771MMK to GBPBritish Pound0.00035941MMK to JPYJapanese Yen0.075062MMK to CNYChinese Yuan0.0031976MMK to CADCanadian Dollar0.00067363MMK to AUDAustralian Dollar0.00067752MMK to CHFSwiss Franc0.00039452MMK to INRIndian Rupee0.045639MMK to RUBRussian Ruble0.040493
Convert to MMK
USD to MMKUS Dollar2,099.4756EUR to MMKEuro2,394.032GBP to MMKBritish Pound2,782.3023JPY to MMKJapanese Yen13.3224CNY to MMKChinese Yuan312.7369CAD to MMKCanadian Dollar1,484.4869AUD to MMKAustralian Dollar1,475.9754CHF to MMKSwiss Franc2,534.7083INR to MMKIndian Rupee21.9112RUB to MMKRussian Ruble24.6959
Get MMK rates in your app
One GET request returns every rate against MMK as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=MMK"fetch('https://rate-api.com/api/v1/latest?base=MMK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MMK = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=MMK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MMK = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=MMK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MMK = {$data['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.