Convert GBP to RUB
British Pound → Russian Ruble
1 GBP = 112.66244 RUB(1 RUB = 0.00887607 GBP)
Currency converter
1 GBP =
112.6624 RUB
GBP to RUB: last 30 days
Over the last 30 days, 1 GBP traded between 111.9161 and 117.826 RUB, averaging 114.6849 RUB. The GBP/RUB rate is down 2.95% since 2026-08-28.
- 30-day high
- 117.826
- 2026-09-03
- 30-day low
- 111.9161
- 2026-09-23
- 30-day average
- 114.6849
- Days with data: 30
- 30-day change
- -2.95%
- since 2026-08-28
117.826
111.91612026-08-28 → 2026-09-26
| Date | 1 GBP in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 112.6624 | 0.00% |
| 2026-09-25 | 112.6624 | +0.45% |
| 2026-09-24 | 112.1555 | +0.21% |
| 2026-09-23 | 111.9161 | -0.01% |
| 2026-09-22 | 111.9284 | -0.72% |
| 2026-09-21 | 112.737 | +0.47% |
| 2026-09-20 | 112.2046 | -0.37% |
| 2026-09-19 | 112.6208 | -0.12% |
| 2026-09-18 | 112.7578 | +0.08% |
| 2026-09-17 | 112.669 | -0.55% |
| 2026-09-16 | 113.2955 | -0.57% |
| 2026-09-15 | 113.9491 | -0.11% |
| 2026-09-14 | 114.0748 | +0.20% |
| 2026-09-13 | 113.8518 | +0.11% |
| 2026-09-12 | 113.7255 | +0.27% |
| Date | 1 GBP in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 113.4139 | -1.31% |
| 2026-09-10 | 114.9164 | -1.32% |
| 2026-09-09 | 116.451 | -0.31% |
| 2026-09-08 | 116.813 | -0.32% |
| 2026-09-07 | 117.1919 | +0.07% |
| 2026-09-06 | 117.1137 | +0.86% |
| 2026-09-05 | 116.1185 | -0.96% |
| 2026-09-04 | 117.2487 | -0.49% |
| 2026-09-03 | 117.826 | +0.65% |
| 2026-09-02 | 117.0666 | +0.23% |
| 2026-09-01 | 116.7993 | +0.35% |
| 2026-08-31 | 116.3965 | -0.38% |
| 2026-08-30 | 116.8359 | -0.19% |
| 2026-08-29 | 117.0536 | +0.83% |
| 2026-08-28 | 116.0911 | — |
GBP to RUB conversion table
1 GBP112.6624 RUB
5 GBP563.3122 RUB
10 GBP1,126.6244 RUB
25 GBP2,816.5611 RUB
50 GBP5,633.1221 RUB
100 GBP11,266.244 RUB
500 GBP56,331.221 RUB
1,000 GBP112,662.44 RUB
5,000 GBP563,312.21 RUB
10,000 GBP1,126,624.4 RUB
Get the GBP/RUB rate in your app
One GET request returns the latest GBP → RUB 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/GBP/RUB"fetch('https://rate-api.com/api/v1/pair/GBP/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "RUB"
},
"rate": 112.6624,
"timestamp": 1790429366,
"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
RUB to GBPRussian Ruble → British Pound0.0088761Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.