Convert RUB to GHS
Russian Ruble → Ghanaian Cedi
1 RUB = 0.136395 GHS(1 GHS = 7.331668 RUB)
Currency converter
1 RUB =
0.13639 GHS
RUB to GHS: last 30 days
Over the last 30 days, 1 RUB traded between 0.12936 and 0.13748 GHS, averaging 0.13403 GHS. The RUB/GHS rate is up 3.90% since 2026-08-28.
- 30-day high
- 0.13748
- 2026-09-22
- 30-day low
- 0.12936
- 2026-09-03
- 30-day average
- 0.13403
- Days with data: 30
- 30-day change
- +3.90%
- since 2026-08-28
0.13748
0.129362026-08-28 → 2026-09-26
| Date | 1 RUB in GHS | Daily change |
|---|---|---|
| 2026-09-26 | 0.13639 | 0.00% |
| 2026-09-25 | 0.13639 | -0.11% |
| 2026-09-24 | 0.13654 | -0.35% |
| 2026-09-23 | 0.13703 | -0.33% |
| 2026-09-22 | 0.13748 | +0.49% |
| 2026-09-21 | 0.13681 | -0.10% |
| 2026-09-20 | 0.13694 | +0.35% |
| 2026-09-19 | 0.13646 | +0.19% |
| 2026-09-18 | 0.1362 | -0.22% |
| 2026-09-17 | 0.1365 | +0.19% |
| 2026-09-16 | 0.13624 | +0.45% |
| 2026-09-15 | 0.13563 | +0.12% |
| 2026-09-14 | 0.13547 | -0.18% |
| 2026-09-13 | 0.13572 | -0.28% |
| 2026-09-12 | 0.13611 | -0.28% |
| Date | 1 RUB in GHS | Daily change |
|---|---|---|
| 2026-09-11 | 0.13648 | +1.48% |
| 2026-09-10 | 0.1345 | +1.20% |
| 2026-09-09 | 0.13291 | +0.54% |
| 2026-09-08 | 0.13219 | +0.60% |
| 2026-09-07 | 0.1314 | -0.01% |
| 2026-09-06 | 0.13142 | -0.93% |
| 2026-09-05 | 0.13265 | +1.19% |
| 2026-09-04 | 0.13109 | +1.34% |
| 2026-09-03 | 0.12936 | -0.36% |
| 2026-09-02 | 0.12983 | -0.44% |
| 2026-09-01 | 0.1304 | -0.26% |
| 2026-08-31 | 0.13075 | +0.25% |
| 2026-08-30 | 0.13042 | +0.17% |
| 2026-08-29 | 0.1302 | -0.82% |
| 2026-08-28 | 0.13128 | — |
RUB to GHS conversion table
1 RUB0.13639 GHS
5 RUB0.68197 GHS
10 RUB1.3639 GHS
25 RUB3.4099 GHS
50 RUB6.8197 GHS
100 RUB13.6395 GHS
500 RUB68.1973 GHS
1,000 RUB136.3946 GHS
5,000 RUB681.9731 GHS
10,000 RUB1,363.9462 GHS
Get the RUB/GHS rate in your app
One GET request returns the latest RUB → 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/RUB/GHS"fetch('https://rate-api.com/api/v1/pair/RUB/GHS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} GHS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/GHS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} GHS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/GHS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} GHS\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "GHS"
},
"rate": 0.1364,
"timestamp": 1790429335,
"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 RUBGhanaian Cedi → Russian Ruble7.3317Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.