Convert ZWL to USD
Zimbabwean Dollar → US Dollar
1 ZWL = 0.0000150244 USD(1 USD = 66,558.521 ZWL)
Currency converter
1 ZWL =
0.000015024 USD
ZWL to USD: last 30 days
Over the last 30 days, 1 ZWL traded between 0.000014902 and 0.0031056 USD, averaging 0.00011803 USD. The ZWL/USD rate is down 0.27% since 2026-08-28.
- 30-day high
- 0.0031056
- 2026-09-18
- 30-day low
- 0.000014902
- 2026-09-08
- 30-day average
- 0.00011803
- Days with data: 30
- 30-day change
- -0.27%
- since 2026-08-28
0.0031056
0.0000149022026-08-28 → 2026-09-26
| Date | 1 ZWL in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.000015024 | 0.00% |
| 2026-09-25 | 0.000015024 | +0.06% |
| 2026-09-24 | 0.000015016 | +0.17% |
| 2026-09-23 | 0.000014991 | -0.23% |
| 2026-09-22 | 0.000015025 | +0.05% |
| 2026-09-21 | 0.000015017 | +0.03% |
| 2026-09-20 | 0.000015013 | 0.00% |
| 2026-09-19 | 0.000015013 | -99.52% |
| 2026-09-18 | 0.0031056 | +20609.77% |
| 2026-09-17 | 0.000014996 | +0.40% |
| 2026-09-16 | 0.000014937 | +0.01% |
| 2026-09-15 | 0.000014936 | -0.52% |
| 2026-09-14 | 0.000015014 | +0.03% |
| 2026-09-13 | 0.00001501 | 0.00% |
| 2026-09-12 | 0.00001501 | +0.06% |
| Date | 1 ZWL in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.000015002 | +0.06% |
| 2026-09-10 | 0.000014993 | +0.13% |
| 2026-09-09 | 0.000014973 | +0.48% |
| 2026-09-08 | 0.000014902 | -1.10% |
| 2026-09-07 | 0.000015067 | +0.02% |
| 2026-09-06 | 0.000015063 | 0.00% |
| 2026-09-05 | 0.000015063 | +0.33% |
| 2026-09-04 | 0.000015014 | +0.24% |
| 2026-09-03 | 0.000014978 | +0.30% |
| 2026-09-02 | 0.000014933 | -0.43% |
| 2026-09-01 | 0.000014997 | -0.69% |
| 2026-08-31 | 0.000015102 | +0.02% |
| 2026-08-30 | 0.000015099 | 0.00% |
| 2026-08-29 | 0.000015099 | +0.23% |
| 2026-08-28 | 0.000015065 | — |
ZWL to USD conversion table
1 ZWL0.000015024 USD
5 ZWL0.000075122 USD
10 ZWL0.00015024 USD
25 ZWL0.00037561 USD
50 ZWL0.00075122 USD
100 ZWL0.0015024 USD
500 ZWL0.0075122 USD
1,000 ZWL0.015024 USD
5,000 ZWL0.075122 USD
10,000 ZWL0.15024 USD
Get the ZWL/USD rate in your app
One GET request returns the latest ZWL → 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/ZWL/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/ZWL/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZWL = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZWL/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZWL = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZWL/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 ZWL = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "ZWL",
"to": "USD"
},
"rate": 1.5e-5,
"timestamp": 1790432083,
"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 ZWLUS Dollar → Zimbabwean Dollar66,558.521Convert ZWL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.