Convert USD to GHS
US Dollar → Ghanaian Cedi
1 USD = 11.595325 GHS(1 GHS = 0.0862417 USD)
Currency converter
1 USD =
11.5953 GHS
USD to GHS: last 30 days
Over the last 30 days, 1 USD traded between 11.219 and 11.5953 GHS, averaging 11.4201 GHS. The USD/GHS rate is up 3.34% since 2026-08-28.
- 30-day high
- 11.5953
- 2026-09-25
- 30-day low
- 11.219
- 2026-08-30
- 30-day average
- 11.4201
- Days with data: 30
- 30-day change
- +3.34%
- since 2026-08-28
11.5953
11.2192026-08-28 → 2026-09-26
| Date | 1 USD in GHS | Daily change |
|---|---|---|
| 2026-09-26 | 11.5953 | 0.00% |
| 2026-09-25 | 11.5953 | +0.09% |
| 2026-09-24 | 11.5845 | +0.29% |
| 2026-09-23 | 11.5511 | +0.31% |
| 2026-09-22 | 11.5151 | +0.00% |
| 2026-09-21 | 11.5149 | -0.00% |
| 2026-09-20 | 11.5149 | -0.02% |
| 2026-09-19 | 11.5168 | +0.07% |
| 2026-09-18 | 11.5088 | +0.10% |
| 2026-09-17 | 11.4975 | +0.23% |
| 2026-09-16 | 11.4712 | +0.07% |
| 2026-09-15 | 11.4626 | +0.09% |
| 2026-09-14 | 11.4518 | +0.11% |
| 2026-09-13 | 11.4391 | -0.17% |
| 2026-09-12 | 11.4589 | -0.00% |
| Date | 1 USD in GHS | Daily change |
|---|---|---|
| 2026-09-11 | 11.4592 | +0.24% |
| 2026-09-10 | 11.4316 | +0.19% |
| 2026-09-09 | 11.4097 | +0.08% |
| 2026-09-08 | 11.4001 | +0.17% |
| 2026-09-07 | 11.3812 | +0.05% |
| 2026-09-06 | 11.3755 | -0.08% |
| 2026-09-05 | 11.3847 | +0.21% |
| 2026-09-04 | 11.3604 | +0.60% |
| 2026-09-03 | 11.293 | +0.18% |
| 2026-09-02 | 11.2721 | +0.14% |
| 2026-09-01 | 11.2563 | +0.14% |
| 2026-08-31 | 11.2402 | +0.19% |
| 2026-08-30 | 11.219 | -0.02% |
| 2026-08-29 | 11.221 | +0.00% |
| 2026-08-28 | 11.2206 | — |
USD to GHS conversion table
1 USD11.5953 GHS
5 USD57.9766 GHS
10 USD115.9533 GHS
25 USD289.8831 GHS
50 USD579.7662 GHS
100 USD1,159.5325 GHS
500 USD5,797.6623 GHS
1,000 USD11,595.325 GHS
5,000 USD57,976.623 GHS
10,000 USD115,953.25 GHS
Get the USD/GHS rate in your app
One GET request returns the latest USD → GHS 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/GHS"fetch('https://rate-api.com/api/v1/pair/USD/GHS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} GHS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/GHS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} GHS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/GHS');
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']} GHS\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "GHS"
},
"rate": 11.5953,
"timestamp": 1790429346,
"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
GHS to USDGhanaian Cedi → US Dollar0.086242Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.