Convert MWK to USD
Malawian Kwacha → US Dollar
1 MWK = 0.000576793 USD(1 USD = 1,733.723 MWK)
Currency converter
1 MWK =
0.00057679 USD
MWK to USD: last 30 days
Over the last 30 days, 1 MWK traded between 0.00057389 and 0.00057734 USD, averaging 0.00057617 USD. The MWK/USD rate is up 0.18% since 2026-08-28.
- 30-day high
- 0.00057734
- 2026-09-09
- 30-day low
- 0.00057389
- 2026-08-31
- 30-day average
- 0.00057617
- Days with data: 30
- 30-day change
- +0.18%
- since 2026-08-28
0.00057734
0.000573892026-08-28 → 2026-09-26
| Date | 1 MWK in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00057679 | 0.00% |
| 2026-09-25 | 0.00057679 | +0.30% |
| 2026-09-24 | 0.00057504 | -0.16% |
| 2026-09-23 | 0.00057599 | -0.07% |
| 2026-09-22 | 0.0005764 | -0.12% |
| 2026-09-21 | 0.0005771 | +0.24% |
| 2026-09-20 | 0.00057572 | +0.24% |
| 2026-09-19 | 0.00057432 | -0.24% |
| 2026-09-18 | 0.00057571 | +0.01% |
| 2026-09-17 | 0.00057563 | -0.11% |
| 2026-09-16 | 0.00057625 | +0.10% |
| 2026-09-15 | 0.00057568 | -0.13% |
| 2026-09-14 | 0.00057645 | -0.06% |
| 2026-09-13 | 0.00057679 | +0.11% |
| 2026-09-12 | 0.00057616 | -0.01% |
| Date | 1 MWK in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.00057622 | -0.09% |
| 2026-09-10 | 0.00057672 | -0.11% |
| 2026-09-09 | 0.00057734 | +0.10% |
| 2026-09-08 | 0.00057678 | +0.04% |
| 2026-09-07 | 0.00057654 | +0.02% |
| 2026-09-06 | 0.00057644 | +0.07% |
| 2026-09-05 | 0.00057603 | +0.02% |
| 2026-09-04 | 0.0005759 | -0.22% |
| 2026-09-03 | 0.00057716 | +0.20% |
| 2026-09-02 | 0.00057599 | -0.20% |
| 2026-09-01 | 0.00057713 | +0.56% |
| 2026-08-31 | 0.00057389 | -0.41% |
| 2026-08-30 | 0.00057624 | +0.03% |
| 2026-08-29 | 0.00057609 | +0.06% |
| 2026-08-28 | 0.00057577 | — |
MWK to USD conversion table
1 MWK0.00057679 USD
5 MWK0.002884 USD
10 MWK0.0057679 USD
25 MWK0.01442 USD
50 MWK0.02884 USD
100 MWK0.057679 USD
500 MWK0.2884 USD
1,000 MWK0.57679 USD
5,000 MWK2.884 USD
10,000 MWK5.7679 USD
Get the MWK/USD rate in your app
One GET request returns the latest MWK → USD 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/MWK/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/MWK/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MWK = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MWK/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MWK = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MWK/USD?precision=6');
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['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "MWK",
"to": "USD"
},
"rate": 0.000577,
"timestamp": 1790432098,
"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
USD to MWKUS Dollar → Malawian Kwacha1,733.723Convert MWK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.