Convert USD to GYD
US Dollar → Guyanaese Dollar
1 USD = 209.18869 GYD(1 GYD = 0.00478037 USD)
Currency converter
1 USD =
209.1887 GYD
USD to GYD: last 30 days
Over the last 30 days, 1 USD traded between 208.7827 and 210.3976 GYD, averaging 209.2302 GYD. The USD/GYD rate is up 0.11% since 2026-08-28.
- 30-day high
- 210.3976
- 2026-09-17
- 30-day low
- 208.7827
- 2026-09-04
- 30-day average
- 209.2302
- Days with data: 30
- 30-day change
- +0.11%
- since 2026-08-28
210.3976
208.78272026-08-28 → 2026-09-26
| Date | 1 USD in GYD | Daily change |
|---|---|---|
| 2026-09-26 | 209.1887 | 0.00% |
| 2026-09-25 | 209.1887 | -0.36% |
| 2026-09-24 | 209.9463 | +0.24% |
| 2026-09-23 | 209.4338 | +0.07% |
| 2026-09-22 | 209.283 | +0.10% |
| 2026-09-21 | 209.0768 | -0.15% |
| 2026-09-20 | 209.3977 | +0.23% |
| 2026-09-19 | 208.9187 | -0.11% |
| 2026-09-18 | 209.1559 | -0.59% |
| 2026-09-17 | 210.3976 | +0.63% |
| 2026-09-16 | 209.0863 | +0.02% |
| 2026-09-15 | 209.0395 | -0.05% |
| 2026-09-14 | 209.1534 | +0.07% |
| 2026-09-13 | 209.0096 | +0.10% |
| 2026-09-12 | 208.7929 | -0.31% |
| Date | 1 USD in GYD | Daily change |
|---|---|---|
| 2026-09-11 | 209.4452 | +0.12% |
| 2026-09-10 | 209.2004 | +0.16% |
| 2026-09-09 | 208.8765 | -0.14% |
| 2026-09-08 | 209.1684 | -0.02% |
| 2026-09-07 | 209.2045 | -0.03% |
| 2026-09-06 | 209.2637 | +0.20% |
| 2026-09-05 | 208.8465 | +0.03% |
| 2026-09-04 | 208.7827 | -0.06% |
| 2026-09-03 | 208.9181 | -0.20% |
| 2026-09-02 | 209.3469 | +0.16% |
| 2026-09-01 | 209.0172 | -0.56% |
| 2026-08-31 | 210.1931 | +0.45% |
| 2026-08-30 | 209.254 | -0.05% |
| 2026-08-29 | 209.3532 | +0.18% |
| 2026-08-28 | 208.968 | — |
USD to GYD conversion table
1 USD209.1887 GYD
5 USD1,045.9434 GYD
10 USD2,091.8869 GYD
25 USD5,229.7171 GYD
50 USD10,459.434 GYD
100 USD20,918.869 GYD
500 USD104,594.34 GYD
1,000 USD209,188.69 GYD
5,000 USD1,045,943.4 GYD
10,000 USD2,091,886.9 GYD
Get the USD/GYD rate in your app
One GET request returns the latest USD → GYD 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/GYD"fetch('https://rate-api.com/api/v1/pair/USD/GYD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} GYD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/GYD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} GYD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/GYD');
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']} GYD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "GYD"
},
"rate": 209.1887,
"timestamp": 1790429361,
"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
GYD to USDGuyanaese Dollar → US Dollar0.0047804Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.