Zimbabwean Dollar (ZWL) $
Zimbabwean Dollar exchange rates against major world currencies, checked hourly and updated as sources publish.
1 ZWL = 0.0000150244 USD
1 ZWL in other currencies
ZWL to USDUS Dollar0.000015024ZWL to EUREuro0.000013176ZWL to GBPBritish Pound0.000011337ZWL to JPYJapanese Yen0.0023677ZWL to CNYChinese Yuan0.00010086ZWL to CADCanadian Dollar0.000021249ZWL to AUDAustralian Dollar0.000021371ZWL to CHFSwiss Franc0.000012445ZWL to INRIndian Rupee0.0014396ZWL to RUBRussian Ruble0.0012773
Convert to ZWL
USD to ZWLUS Dollar66,558.521EUR to ZWLEuro75,896.682GBP to ZWLBritish Pound88,205.801JPY to ZWLJapanese Yen422.3522CNY to ZWLChinese Yuan9,914.5252CAD to ZWLCanadian Dollar47,061.872AUD to ZWLAustralian Dollar46,792.036CHF to ZWLSwiss Franc80,356.465INR to ZWLIndian Rupee694.6397RUB to ZWLRussian Ruble782.9211
Get ZWL rates in your app
One GET request returns every rate against ZWL 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=ZWL"fetch('https://rate-api.com/api/v1/latest?base=ZWL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZWL = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=ZWL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZWL = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=ZWL');
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['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.