Convert ZMW to USD
Zambian Kwacha → US Dollar
1 ZMW = 0.0511506 USD(1 USD = 19.550126 ZMW)
Currency converter
1 ZMW =
0.051151 USD
ZMW to USD: last 30 days
Over the last 30 days, 1 ZMW traded between 0.050761 and 0.052603 USD, averaging 0.051645 USD. The ZMW/USD rate is down 2.76% since 2026-08-28.
- 30-day high
- 0.052603
- 2026-08-28
- 30-day low
- 0.050761
- 2026-09-21
- 30-day average
- 0.051645
- Days with data: 30
- 30-day change
- -2.76%
- since 2026-08-28
0.052603
0.0507612026-08-28 → 2026-09-26
| Date | 1 ZMW in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.051151 | 0.00% |
| 2026-09-25 | 0.051151 | +0.10% |
| 2026-09-24 | 0.051099 | -0.35% |
| 2026-09-23 | 0.051281 | +0.77% |
| 2026-09-22 | 0.05089 | +0.26% |
| 2026-09-21 | 0.050761 | -0.35% |
| 2026-09-20 | 0.050936 | +0.32% |
| 2026-09-19 | 0.050772 | -0.37% |
| 2026-09-18 | 0.050961 | +0.04% |
| 2026-09-17 | 0.050941 | -0.16% |
| 2026-09-16 | 0.05102 | -1.02% |
| 2026-09-15 | 0.051548 | -0.25% |
| 2026-09-14 | 0.05168 | -0.00% |
| 2026-09-13 | 0.051682 | +0.00% |
| 2026-09-12 | 0.05168 | -0.00% |
| Date | 1 ZMW in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.05168 | -0.25% |
| 2026-09-10 | 0.051811 | +0.10% |
| 2026-09-09 | 0.051759 | -0.37% |
| 2026-09-08 | 0.051949 | -0.00% |
| 2026-09-07 | 0.051949 | -0.00% |
| 2026-09-06 | 0.051951 | +0.00% |
| 2026-09-05 | 0.051949 | -0.25% |
| 2026-09-04 | 0.052081 | -0.26% |
| 2026-09-03 | 0.05222 | +0.05% |
| 2026-09-02 | 0.052191 | -0.00% |
| 2026-09-01 | 0.052191 | -0.58% |
| 2026-08-31 | 0.052496 | -0.06% |
| 2026-08-30 | 0.052527 | +0.16% |
| 2026-08-29 | 0.05244 | -0.31% |
| 2026-08-28 | 0.052603 | — |
ZMW to USD conversion table
1 ZMW0.051151 USD
5 ZMW0.25575 USD
10 ZMW0.51151 USD
25 ZMW1.2788 USD
50 ZMW2.5575 USD
100 ZMW5.1151 USD
500 ZMW25.5753 USD
1,000 ZMW51.1506 USD
5,000 ZMW255.7528 USD
10,000 ZMW511.5057 USD
Get the ZMW/USD rate in your app
One GET request returns the latest ZMW → 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/ZMW/USD"fetch('https://rate-api.com/api/v1/pair/ZMW/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZMW = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZMW/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZMW = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZMW/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ZMW = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "ZMW",
"to": "USD"
},
"rate": 0.0512,
"timestamp": 1790432148,
"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 ZMWUS Dollar → Zambian Kwacha19.5501Convert ZMW to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.