Convert GMD to USD
Gambian Dalasi → US Dollar
1 GMD = 0.0135092 USD(1 USD = 74.0238 GMD)
Currency converter
1 GMD =
0.013509 USD
GMD to USD: last 30 days
Over the last 30 days, 1 GMD traded between 0.013328 and 0.013612 USD, averaging 0.013499 USD. The GMD/USD rate is up 1.36% since 2026-08-28.
- 30-day high
- 0.013612
- 2026-09-12
- 30-day low
- 0.013328
- 2026-08-28
- 30-day average
- 0.013499
- Days with data: 30
- 30-day change
- +1.36%
- since 2026-08-28
0.013612
0.0133282026-08-28 → 2026-09-26
| Date | 1 GMD in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.013509 | 0.00% |
| 2026-09-25 | 0.013509 | -0.00% |
| 2026-09-24 | 0.013509 | -0.12% |
| 2026-09-23 | 0.013526 | +0.01% |
| 2026-09-22 | 0.013524 | +0.03% |
| 2026-09-21 | 0.01352 | +0.00% |
| 2026-09-20 | 0.01352 | -0.66% |
| 2026-09-19 | 0.013609 | +0.02% |
| 2026-09-18 | 0.013606 | +0.37% |
| 2026-09-17 | 0.013557 | +0.32% |
| 2026-09-16 | 0.013514 | +0.06% |
| 2026-09-15 | 0.013506 | -0.03% |
| 2026-09-14 | 0.013509 | +0.74% |
| 2026-09-13 | 0.01341 | -1.48% |
| 2026-09-12 | 0.013612 | +0.70% |
| Date | 1 GMD in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.013518 | +0.20% |
| 2026-09-10 | 0.013491 | +0.01% |
| 2026-09-09 | 0.01349 | +0.39% |
| 2026-09-08 | 0.013438 | -0.48% |
| 2026-09-07 | 0.013503 | +0.48% |
| 2026-09-06 | 0.013439 | -0.98% |
| 2026-09-05 | 0.013571 | +0.33% |
| 2026-09-04 | 0.013526 | +0.88% |
| 2026-09-03 | 0.013408 | -0.03% |
| 2026-09-02 | 0.013412 | -0.10% |
| 2026-09-01 | 0.013426 | -0.60% |
| 2026-08-31 | 0.013507 | +0.47% |
| 2026-08-30 | 0.013444 | -0.55% |
| 2026-08-29 | 0.013519 | +1.43% |
| 2026-08-28 | 0.013328 | — |
GMD to USD conversion table
1 GMD0.013509 USD
5 GMD0.067546 USD
10 GMD0.13509 USD
25 GMD0.33773 USD
50 GMD0.67546 USD
100 GMD1.3509 USD
500 GMD6.7546 USD
1,000 GMD13.5092 USD
5,000 GMD67.5458 USD
10,000 GMD135.0917 USD
Get the GMD/USD rate in your app
One GET request returns the latest GMD → 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/GMD/USD"fetch('https://rate-api.com/api/v1/pair/GMD/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GMD = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GMD/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GMD = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GMD/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GMD = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "GMD",
"to": "USD"
},
"rate": 0.0135,
"timestamp": 1790432075,
"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 GMDUS Dollar → Gambian Dalasi74.0238Convert GMD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.