Convert USD to ZWG
US Dollar → Zimbabwe Gold
1 USD = 26.637002 ZWG(1 ZWG = 0.0375418 USD)
Currency converter
1 USD =
26.637 ZWG
USD to ZWG: last 30 days
Over the last 30 days, 1 USD traded between 26.5002 and 26.8564 ZWG, averaging 26.6578 ZWG. The USD/ZWG rate is up 0.27% since 2026-08-28.
- 30-day high
- 26.8564
- 2026-09-08
- 30-day low
- 26.5002
- 2026-08-31
- 30-day average
- 26.6578
- Days with data: 30
- 30-day change
- +0.27%
- since 2026-08-28
26.8564
26.50022026-08-28 → 2026-09-26
| Date | 1 USD in ZWG | Daily change |
|---|---|---|
| 2026-09-26 | 26.637 | 0.00% |
| 2026-09-25 | 26.637 | -0.06% |
| 2026-09-24 | 26.6517 | -0.17% |
| 2026-09-23 | 26.6962 | +0.23% |
| 2026-09-22 | 26.6358 | -0.05% |
| 2026-09-21 | 26.6497 | -0.03% |
| 2026-09-20 | 26.6566 | 0.00% |
| 2026-09-19 | 26.6566 | -0.05% |
| 2026-09-18 | 26.6691 | -0.07% |
| 2026-09-17 | 26.6878 | -0.39% |
| 2026-09-16 | 26.7933 | -0.01% |
| 2026-09-15 | 26.7954 | +0.53% |
| 2026-09-14 | 26.6549 | -0.03% |
| 2026-09-13 | 26.6618 | 0.00% |
| 2026-09-12 | 26.6618 | -0.06% |
| Date | 1 USD in ZWG | Daily change |
|---|---|---|
| 2026-09-11 | 26.6772 | -0.06% |
| 2026-09-10 | 26.6923 | -0.13% |
| 2026-09-09 | 26.7279 | -0.48% |
| 2026-09-08 | 26.8564 | +1.11% |
| 2026-09-07 | 26.5614 | -0.02% |
| 2026-09-06 | 26.568 | 0.00% |
| 2026-09-05 | 26.568 | -0.33% |
| 2026-09-04 | 26.6549 | -0.24% |
| 2026-09-03 | 26.7193 | -0.30% |
| 2026-09-02 | 26.8001 | +0.43% |
| 2026-09-01 | 26.685 | +0.70% |
| 2026-08-31 | 26.5002 | -0.02% |
| 2026-08-30 | 26.5059 | 0.00% |
| 2026-08-29 | 26.5059 | -0.23% |
| 2026-08-28 | 26.5658 | — |
USD to ZWG conversion table
1 USD26.637 ZWG
5 USD133.185 ZWG
10 USD266.37 ZWG
25 USD665.9251 ZWG
50 USD1,331.8501 ZWG
100 USD2,663.7002 ZWG
500 USD13,318.501 ZWG
1,000 USD26,637.002 ZWG
5,000 USD133,185.01 ZWG
10,000 USD266,370.02 ZWG
Get the USD/ZWG rate in your app
One GET request returns the latest USD → ZWG 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/USD/ZWG"fetch('https://rate-api.com/api/v1/pair/USD/ZWG', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} ZWG`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/ZWG",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} ZWG")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/ZWG');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} ZWG\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "ZWG"
},
"rate": 26.637,
"timestamp": 1790429445,
"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
ZWG to USDZimbabwe Gold → US Dollar0.037542Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.