Malawian Kwacha (MWK) MK
Malawian Kwacha exchange rates against major world currencies, checked hourly and updated as sources publish.
1 MWK = 0.000576793 USD
1 MWK in other currencies
MWK to USDUS Dollar0.00057679MWK to EUREuro0.00050583MWK to GBPBritish Pound0.00043524MWK to JPYJapanese Yen0.090897MWK to CNYChinese Yuan0.0038721MWK to CADCanadian Dollar0.00081575MWK to AUDAustralian Dollar0.00082045MWK to CHFSwiss Franc0.00047775MWK to INRIndian Rupee0.055267MWK to RUBRussian Ruble0.049035
Convert to MWK
USD to MWKUS Dollar1,733.723EUR to MWKEuro1,976.9643GBP to MWKBritish Pound2,297.5935JPY to MWKJapanese Yen11.0015CNY to MWKChinese Yuan258.2545CAD to MWKCanadian Dollar1,225.8723AUD to MWKAustralian Dollar1,218.8436CHF to MWKSwiss Franc2,093.1332INR to MWKIndian Rupee18.094RUB to MWKRussian Ruble20.3936
Get MWK rates in your app
One GET request returns every rate against MWK 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=MWK"fetch('https://rate-api.com/api/v1/latest?base=MWK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MWK = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=MWK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MWK = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=MWK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MWK = {$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.