Convert GBP to RON
British Pound → Romanian Leu
1 GBP = 6.132256 RON(1 RON = 0.163072 GBP)
Currency converter
1 GBP =
6.1323 RON
GBP to RON: last 30 days
Over the last 30 days, 1 GBP traded between 6.1046 and 6.1494 RON, averaging 6.1287 RON. The GBP/RON rate is down 0.04% since 2026-08-28.
- 30-day high
- 6.1494
- 2026-09-15
- 30-day low
- 6.1046
- 2026-09-03
- 30-day average
- 6.1287
- Days with data: 30
- 30-day change
- -0.04%
- since 2026-08-28
6.1494
6.10462026-08-28 → 2026-09-26
| Date | 1 GBP in RON | Daily change |
|---|---|---|
| 2026-09-26 | 6.1323 | 0.00% |
| 2026-09-25 | 6.1323 | -0.10% |
| 2026-09-24 | 6.1381 | -0.05% |
| 2026-09-23 | 6.1414 | +0.04% |
| 2026-09-22 | 6.139 | +0.02% |
| 2026-09-21 | 6.1375 | +0.12% |
| 2026-09-20 | 6.1303 | 0.00% |
| 2026-09-19 | 6.1303 | 0.00% |
| 2026-09-18 | 6.1303 | -0.02% |
| 2026-09-17 | 6.1313 | -0.11% |
| 2026-09-16 | 6.1383 | -0.18% |
| 2026-09-15 | 6.1494 | +0.13% |
| 2026-09-14 | 6.1412 | +0.29% |
| 2026-09-13 | 6.1232 | 0.00% |
| 2026-09-12 | 6.1232 | 0.00% |
| Date | 1 GBP in RON | Daily change |
|---|---|---|
| 2026-09-11 | 6.1232 | +0.16% |
| 2026-09-10 | 6.1136 | -0.06% |
| 2026-09-09 | 6.1172 | -0.10% |
| 2026-09-08 | 6.1231 | +0.14% |
| 2026-09-07 | 6.1144 | -0.02% |
| 2026-09-06 | 6.1154 | 0.00% |
| 2026-09-05 | 6.1154 | 0.00% |
| 2026-09-04 | 6.1154 | +0.18% |
| 2026-09-03 | 6.1046 | -0.26% |
| 2026-09-02 | 6.1206 | -0.27% |
| 2026-09-01 | 6.137 | -0.06% |
| 2026-08-31 | 6.1405 | +0.10% |
| 2026-08-30 | 6.1344 | 0.00% |
| 2026-08-29 | 6.1344 | 0.00% |
| 2026-08-28 | 6.1344 | — |
GBP to RON conversion table
1 GBP6.1323 RON
5 GBP30.6613 RON
10 GBP61.3226 RON
25 GBP153.3064 RON
50 GBP306.6128 RON
100 GBP613.2256 RON
500 GBP3,066.1282 RON
1,000 GBP6,132.2564 RON
5,000 GBP30,661.282 RON
10,000 GBP61,322.564 RON
Get the GBP/RON rate in your app
One GET request returns the latest GBP → RON 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/RON"fetch('https://rate-api.com/api/v1/pair/GBP/RON', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} RON`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/RON",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} RON")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/RON');
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']} RON\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "RON"
},
"rate": 6.1323,
"timestamp": 1790429362,
"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
RON to GBPRomanian Leu → British Pound0.16307Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.