Convert ZWG to USD
Zimbabwe Gold → US Dollar
1 ZWG = 0.0375418 USD(1 USD = 26.637002 ZWG)
Currency converter
1 ZWG =
0.037542 USD
ZWG to USD: last 30 days
Over the last 30 days, 1 ZWG traded between 0.037235 and 0.037736 USD, averaging 0.037513 USD. The ZWG/USD rate is down 0.27% since 2026-08-28.
- 30-day high
- 0.037736
- 2026-08-31
- 30-day low
- 0.037235
- 2026-09-08
- 30-day average
- 0.037513
- Days with data: 30
- 30-day change
- -0.27%
- since 2026-08-28
0.037736
0.0372352026-08-28 → 2026-09-26
| Date | 1 ZWG in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.037542 | 0.00% |
| 2026-09-25 | 0.037542 | +0.06% |
| 2026-09-24 | 0.037521 | +0.17% |
| 2026-09-23 | 0.037459 | -0.23% |
| 2026-09-22 | 0.037543 | +0.05% |
| 2026-09-21 | 0.037524 | +0.03% |
| 2026-09-20 | 0.037514 | 0.00% |
| 2026-09-19 | 0.037514 | +0.05% |
| 2026-09-18 | 0.037497 | +0.07% |
| 2026-09-17 | 0.03747 | +0.40% |
| 2026-09-16 | 0.037323 | +0.01% |
| 2026-09-15 | 0.03732 | -0.52% |
| 2026-09-14 | 0.037517 | +0.03% |
| 2026-09-13 | 0.037507 | 0.00% |
| 2026-09-12 | 0.037507 | +0.06% |
| Date | 1 ZWG in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.037485 | +0.06% |
| 2026-09-10 | 0.037464 | +0.13% |
| 2026-09-09 | 0.037414 | +0.48% |
| 2026-09-08 | 0.037235 | -1.10% |
| 2026-09-07 | 0.037649 | +0.02% |
| 2026-09-06 | 0.037639 | 0.00% |
| 2026-09-05 | 0.037639 | +0.33% |
| 2026-09-04 | 0.037517 | +0.24% |
| 2026-09-03 | 0.037426 | +0.30% |
| 2026-09-02 | 0.037313 | -0.43% |
| 2026-09-01 | 0.037474 | -0.69% |
| 2026-08-31 | 0.037736 | +0.02% |
| 2026-08-30 | 0.037727 | 0.00% |
| 2026-08-29 | 0.037727 | +0.23% |
| 2026-08-28 | 0.037642 | — |
ZWG to USD conversion table
1 ZWG0.037542 USD
5 ZWG0.18771 USD
10 ZWG0.37542 USD
25 ZWG0.93854 USD
50 ZWG1.8771 USD
100 ZWG3.7542 USD
500 ZWG18.7709 USD
1,000 ZWG37.5418 USD
5,000 ZWG187.7088 USD
10,000 ZWG375.4176 USD
Get the ZWG/USD rate in your app
One GET request returns the latest ZWG → 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/ZWG/USD"fetch('https://rate-api.com/api/v1/pair/ZWG/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZWG = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZWG/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZWG = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZWG/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ZWG = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "ZWG",
"to": "USD"
},
"rate": 0.0375,
"timestamp": 1790435221,
"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 ZWGUS Dollar → Zimbabwe Gold26.637Convert ZWG to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.