Convert USD to GMD
US Dollar → Gambian Dalasi
1 USD = 74.0238 GMD(1 GMD = 0.0135092 USD)
Currency converter
1 USD =
74.0238 GMD
USD to GMD: last 30 days
Over the last 30 days, 1 USD traded between 73.464 and 75.03 GMD, averaging 74.0826 GMD. The USD/GMD rate is down 1.34% since 2026-08-28.
- 30-day high
- 75.03
- 2026-08-28
- 30-day low
- 73.464
- 2026-09-12
- 30-day average
- 74.0826
- Days with data: 30
- 30-day change
- -1.34%
- since 2026-08-28
75.03
73.4642026-08-28 → 2026-09-26
| Date | 1 USD in GMD | Daily change |
|---|---|---|
| 2026-09-26 | 74.0238 | 0.00% |
| 2026-09-25 | 74.0238 | +0.00% |
| 2026-09-24 | 74.0236 | +0.12% |
| 2026-09-23 | 73.9325 | -0.01% |
| 2026-09-22 | 73.9402 | -0.03% |
| 2026-09-21 | 73.9646 | -0.00% |
| 2026-09-20 | 73.9651 | +0.66% |
| 2026-09-19 | 73.4803 | -0.02% |
| 2026-09-18 | 73.4954 | -0.36% |
| 2026-09-17 | 73.7636 | -0.32% |
| 2026-09-16 | 73.9968 | -0.06% |
| 2026-09-15 | 74.0425 | +0.03% |
| 2026-09-14 | 74.0238 | -0.73% |
| 2026-09-13 | 74.569 | +1.50% |
| 2026-09-12 | 73.464 | -0.69% |
| Date | 1 USD in GMD | Daily change |
|---|---|---|
| 2026-09-11 | 73.9758 | -0.20% |
| 2026-09-10 | 74.1219 | -0.01% |
| 2026-09-09 | 74.129 | -0.38% |
| 2026-09-08 | 74.4149 | +0.48% |
| 2026-09-07 | 74.0561 | -0.48% |
| 2026-09-06 | 74.4114 | +0.99% |
| 2026-09-05 | 73.6839 | -0.33% |
| 2026-09-04 | 73.93 | -0.88% |
| 2026-09-03 | 74.5836 | +0.03% |
| 2026-09-02 | 74.5602 | +0.10% |
| 2026-09-01 | 74.4839 | +0.61% |
| 2026-08-31 | 74.0355 | -0.47% |
| 2026-08-30 | 74.3827 | +0.56% |
| 2026-08-29 | 73.9708 | -1.41% |
| 2026-08-28 | 75.03 | — |
USD to GMD conversion table
1 USD74.0238 GMD
5 USD370.119 GMD
10 USD740.238 GMD
25 USD1,850.595 GMD
50 USD3,701.19 GMD
100 USD7,402.38 GMD
500 USD37,011.9 GMD
1,000 USD74,023.8 GMD
5,000 USD370,119 GMD
10,000 USD740,238 GMD
Get the USD/GMD rate in your app
One GET request returns the latest USD → GMD 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/GMD"fetch('https://rate-api.com/api/v1/pair/USD/GMD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} GMD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/GMD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} GMD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/GMD');
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']} GMD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "GMD"
},
"rate": 74.0238,
"timestamp": 1790429312,
"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
GMD to USDGambian Dalasi → US Dollar0.013509Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.