Convert GEL to USD
Georgian Lari → US Dollar
1 GEL = 0.384488 USD(1 USD = 2.600858 GEL)
Currency converter
1 GEL =
0.38449 USD
GEL to USD: last 30 days
Over the last 30 days, 1 GEL traded between 0.38303 and 0.3857 USD, averaging 0.38427 USD. The GEL/USD rate is up 0.15% since 2026-08-28.
- 30-day high
- 0.3857
- 2026-09-18
- 30-day low
- 0.38303
- 2026-09-04
- 30-day average
- 0.38427
- Days with data: 30
- 30-day change
- +0.15%
- since 2026-08-28
0.3857
0.383032026-08-28 → 2026-09-26
| Date | 1 GEL in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.38449 | 0.00% |
| 2026-09-25 | 0.38449 | +0.33% |
| 2026-09-24 | 0.38324 | -0.24% |
| 2026-09-23 | 0.38418 | -0.13% |
| 2026-09-22 | 0.38468 | -0.03% |
| 2026-09-21 | 0.3848 | +0.03% |
| 2026-09-20 | 0.38467 | +0.03% |
| 2026-09-19 | 0.38457 | -0.29% |
| 2026-09-18 | 0.3857 | +0.26% |
| 2026-09-17 | 0.3847 | -0.03% |
| 2026-09-16 | 0.38481 | +0.00% |
| 2026-09-15 | 0.38481 | -0.02% |
| 2026-09-14 | 0.3849 | +0.22% |
| 2026-09-13 | 0.38405 | -0.08% |
| 2026-09-12 | 0.38438 | -0.02% |
| Date | 1 GEL in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.38445 | +0.04% |
| 2026-09-10 | 0.38431 | -0.02% |
| 2026-09-09 | 0.38438 | +0.05% |
| 2026-09-08 | 0.38421 | -0.08% |
| 2026-09-07 | 0.38452 | +0.19% |
| 2026-09-06 | 0.38379 | +0.04% |
| 2026-09-05 | 0.38365 | +0.16% |
| 2026-09-04 | 0.38303 | -0.18% |
| 2026-09-03 | 0.38371 | +0.14% |
| 2026-09-02 | 0.38319 | -0.12% |
| 2026-09-01 | 0.38363 | -0.21% |
| 2026-08-31 | 0.38444 | +0.05% |
| 2026-08-30 | 0.38426 | -0.00% |
| 2026-08-29 | 0.38426 | +0.09% |
| 2026-08-28 | 0.38391 | — |
GEL to USD conversion table
1 GEL0.38449 USD
5 GEL1.9224 USD
10 GEL3.8449 USD
25 GEL9.6122 USD
50 GEL19.2244 USD
100 GEL38.4488 USD
500 GEL192.2442 USD
1,000 GEL384.4885 USD
5,000 GEL1,922.4424 USD
10,000 GEL3,844.8848 USD
Get the GEL/USD rate in your app
One GET request returns the latest GEL → 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/GEL/USD"fetch('https://rate-api.com/api/v1/pair/GEL/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GEL = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GEL/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GEL = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GEL/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GEL = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "GEL",
"to": "USD"
},
"rate": 0.3845,
"timestamp": 1790432090,
"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 GELUS Dollar → Georgian Lari2.6009Convert GEL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.