Convert RON to GBP
Romanian Leu → British Pound
1 RON = 0.163072 GBP(1 GBP = 6.132256 RON)
Currency converter
1 RON =
0.16307 GBP
RON to GBP: last 30 days
Over the last 30 days, 1 RON traded between 0.16262 and 0.16381 GBP, averaging 0.16317 GBP. The RON/GBP rate is up 0.04% since 2026-08-28.
- 30-day high
- 0.16381
- 2026-09-03
- 30-day low
- 0.16262
- 2026-09-15
- 30-day average
- 0.16317
- Days with data: 30
- 30-day change
- +0.04%
- since 2026-08-28
0.16381
0.162622026-08-28 → 2026-09-26
| Date | 1 RON in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.16307 | 0.00% |
| 2026-09-25 | 0.16307 | +0.10% |
| 2026-09-24 | 0.16292 | +0.05% |
| 2026-09-23 | 0.16283 | -0.04% |
| 2026-09-22 | 0.16289 | -0.02% |
| 2026-09-21 | 0.16293 | -0.12% |
| 2026-09-20 | 0.16312 | 0.00% |
| 2026-09-19 | 0.16312 | 0.00% |
| 2026-09-18 | 0.16312 | +0.02% |
| 2026-09-17 | 0.1631 | +0.11% |
| 2026-09-16 | 0.16291 | +0.18% |
| 2026-09-15 | 0.16262 | -0.13% |
| 2026-09-14 | 0.16283 | -0.29% |
| 2026-09-13 | 0.16331 | 0.00% |
| 2026-09-12 | 0.16331 | 0.00% |
| Date | 1 RON in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.16331 | -0.16% |
| 2026-09-10 | 0.16357 | +0.06% |
| 2026-09-09 | 0.16347 | +0.10% |
| 2026-09-08 | 0.16332 | -0.14% |
| 2026-09-07 | 0.16355 | +0.02% |
| 2026-09-06 | 0.16352 | 0.00% |
| 2026-09-05 | 0.16352 | 0.00% |
| 2026-09-04 | 0.16352 | -0.18% |
| 2026-09-03 | 0.16381 | +0.26% |
| 2026-09-02 | 0.16338 | +0.27% |
| 2026-09-01 | 0.16295 | +0.06% |
| 2026-08-31 | 0.16285 | -0.10% |
| 2026-08-30 | 0.16301 | 0.00% |
| 2026-08-29 | 0.16301 | 0.00% |
| 2026-08-28 | 0.16301 | — |
RON to GBP conversion table
1 RON0.16307 GBP
5 RON0.81536 GBP
10 RON1.6307 GBP
25 RON4.0768 GBP
50 RON8.1536 GBP
100 RON16.3072 GBP
500 RON81.5361 GBP
1,000 RON163.0721 GBP
5,000 RON815.3606 GBP
10,000 RON1,630.7211 GBP
Get the RON/GBP rate in your app
One GET request returns the latest RON → GBP 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/RON/GBP"fetch('https://rate-api.com/api/v1/pair/RON/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RON = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RON/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RON = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RON/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RON = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "RON",
"to": "GBP"
},
"rate": 0.1631,
"timestamp": 1790432106,
"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
GBP to RONBritish Pound → Romanian Leu6.1323Convert RON to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.