Convert USD to GEL
US Dollar → Georgian Lari
1 USD = 2.6045 GEL(1 GEL = 0.383951 USD)
Currency converter
1 USD =
2.6045 GEL
USD to GEL: last 30 days
Over the last 30 days, 1 USD traded between 2.5927 and 2.6107 GEL, averaging 2.6024 GEL. The USD/GEL rate is up 0.08% since 2026-08-29.
- 30-day high
- 2.6107
- 2026-09-04
- 30-day low
- 2.5927
- 2026-09-18
- 30-day average
- 2.6024
- Days with data: 30
- 30-day change
- +0.08%
- since 2026-08-29
2.6107
2.59272026-08-29 → 2026-09-27
| Date | 1 USD in GEL | Daily change |
|---|---|---|
| 2026-09-27 | 2.6045 | 0.00% |
| 2026-09-26 | 2.6045 | +0.14% |
| 2026-09-25 | 2.6009 | -0.32% |
| 2026-09-24 | 2.6093 | +0.24% |
| 2026-09-23 | 2.603 | +0.13% |
| 2026-09-22 | 2.5996 | +0.03% |
| 2026-09-21 | 2.5987 | -0.03% |
| 2026-09-20 | 2.5996 | -0.03% |
| 2026-09-19 | 2.6003 | +0.29% |
| 2026-09-18 | 2.5927 | -0.26% |
| 2026-09-17 | 2.5995 | +0.03% |
| 2026-09-16 | 2.5987 | -0.00% |
| 2026-09-15 | 2.5987 | +0.02% |
| 2026-09-14 | 2.5981 | -0.22% |
| 2026-09-13 | 2.6038 | +0.08% |
| Date | 1 USD in GEL | Daily change |
|---|---|---|
| 2026-09-12 | 2.6016 | +0.02% |
| 2026-09-11 | 2.6011 | -0.04% |
| 2026-09-10 | 2.602 | +0.02% |
| 2026-09-09 | 2.6016 | -0.05% |
| 2026-09-08 | 2.6028 | +0.08% |
| 2026-09-07 | 2.6006 | -0.19% |
| 2026-09-06 | 2.6056 | -0.04% |
| 2026-09-05 | 2.6066 | -0.16% |
| 2026-09-04 | 2.6107 | +0.18% |
| 2026-09-03 | 2.6062 | -0.14% |
| 2026-09-02 | 2.6097 | +0.12% |
| 2026-09-01 | 2.6067 | +0.21% |
| 2026-08-31 | 2.6012 | -0.05% |
| 2026-08-30 | 2.6024 | +0.00% |
| 2026-08-29 | 2.6024 | — |
USD to GEL conversion table
1 USD2.6045 GEL
5 USD13.0225 GEL
10 USD26.045 GEL
25 USD65.1125 GEL
50 USD130.225 GEL
100 USD260.45 GEL
500 USD1,302.2501 GEL
1,000 USD2,604.5002 GEL
5,000 USD13,022.501 GEL
10,000 USD26,045.002 GEL
Get the USD/GEL rate in your app
One GET request returns the latest USD → GEL 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/GEL"fetch('https://rate-api.com/api/v1/pair/USD/GEL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} GEL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/GEL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} GEL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/GEL');
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']} GEL\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "GEL"
},
"rate": 2.6045,
"timestamp": 1790470783,
"date": "2026-09-27"
}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
GEL to USDGeorgian Lari → US Dollar0.38395Convert USD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.