Convert GBP to LRD
British Pound → Liberian Dollar
1 GBP = 227.92744 LRD(1 LRD = 0.00438736 GBP)
Currency converter
1 GBP =
227.9274 LRD
GBP to LRD: last 30 days
Over the last 30 days, 1 GBP traded between 227.9274 and 246.0041 LRD, averaging 236.8863 LRD. The GBP/LRD rate is down 7.33% since 2026-08-28.
- 30-day high
- 246.0041
- 2026-08-29
- 30-day low
- 227.9274
- 2026-09-25
- 30-day average
- 236.8863
- Days with data: 30
- 30-day change
- -7.33%
- since 2026-08-28
246.0041
227.92742026-08-28 → 2026-09-26
| Date | 1 GBP in LRD | Daily change |
|---|---|---|
| 2026-09-26 | 227.9274 | 0.00% |
| 2026-09-25 | 227.9274 | -0.39% |
| 2026-09-24 | 228.8291 | -0.50% |
| 2026-09-23 | 229.982 | -0.61% |
| 2026-09-22 | 231.4027 | -0.04% |
| 2026-09-21 | 231.5062 | -0.21% |
| 2026-09-20 | 231.9944 | +0.45% |
| 2026-09-19 | 230.9461 | -0.82% |
| 2026-09-18 | 232.8592 | -0.15% |
| 2026-09-17 | 233.2007 | -0.73% |
| 2026-09-16 | 234.9255 | -0.09% |
| 2026-09-15 | 235.1271 | -0.18% |
| 2026-09-14 | 235.5528 | -0.11% |
| 2026-09-13 | 235.8182 | +0.09% |
| 2026-09-12 | 235.6139 | -0.07% |
| Date | 1 GBP in LRD | Daily change |
|---|---|---|
| 2026-09-11 | 235.7882 | -0.05% |
| 2026-09-10 | 235.9046 | -2.97% |
| 2026-09-09 | 243.1279 | +2.59% |
| 2026-09-08 | 236.9831 | +0.09% |
| 2026-09-07 | 236.7676 | -2.26% |
| 2026-09-06 | 242.2491 | +0.18% |
| 2026-09-05 | 241.8029 | +0.69% |
| 2026-09-04 | 240.1447 | +0.05% |
| 2026-09-03 | 240.0161 | -1.52% |
| 2026-09-02 | 243.7156 | -0.28% |
| 2026-09-01 | 244.3888 | -0.12% |
| 2026-08-31 | 244.6778 | -0.31% |
| 2026-08-30 | 245.4466 | -0.23% |
| 2026-08-29 | 246.0041 | +0.02% |
| 2026-08-28 | 245.9577 | — |
GBP to LRD conversion table
1 GBP227.9274 LRD
5 GBP1,139.6372 LRD
10 GBP2,279.2744 LRD
25 GBP5,698.1859 LRD
50 GBP11,396.372 LRD
100 GBP22,792.744 LRD
500 GBP113,963.72 LRD
1,000 GBP227,927.44 LRD
5,000 GBP1,139,637.2 LRD
10,000 GBP2,279,274.4 LRD
Get the GBP/LRD rate in your app
One GET request returns the latest GBP → LRD 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/LRD"fetch('https://rate-api.com/api/v1/pair/GBP/LRD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} LRD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/LRD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} LRD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/LRD');
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']} LRD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "LRD"
},
"rate": 227.9274,
"timestamp": 1790429401,
"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
LRD to GBPLiberian Dollar → British Pound0.0043874Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.