Convert LRD to RUB
Liberian Dollar → Russian Ruble
1 LRD = 0.494291 RUB(1 RUB = 2.0231 LRD)
Currency converter
1 LRD =
0.49429 RUB
LRD to RUB: last 30 days
Over the last 30 days, 1 LRD traded between 0.472 and 0.49497 RUB, averaging 0.48423 RUB. The LRD/RUB rate is up 4.72% since 2026-08-28.
- 30-day high
- 0.49497
- 2026-09-07
- 30-day low
- 0.472
- 2026-08-28
- 30-day average
- 0.48423
- Days with data: 30
- 30-day change
- +4.72%
- since 2026-08-28
0.49497
0.4722026-08-28 → 2026-09-26
| Date | 1 LRD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 0.49429 | 0.00% |
| 2026-09-25 | 0.49429 | +0.85% |
| 2026-09-24 | 0.49013 | +0.72% |
| 2026-09-23 | 0.48663 | +0.61% |
| 2026-09-22 | 0.4837 | -0.67% |
| 2026-09-21 | 0.48697 | +0.69% |
| 2026-09-20 | 0.48365 | -0.82% |
| 2026-09-19 | 0.48765 | +0.71% |
| 2026-09-18 | 0.48423 | +0.23% |
| 2026-09-17 | 0.48314 | +0.18% |
| 2026-09-16 | 0.48226 | -0.49% |
| 2026-09-15 | 0.48463 | +0.07% |
| 2026-09-14 | 0.48429 | +0.31% |
| 2026-09-13 | 0.48279 | +0.02% |
| 2026-09-12 | 0.48268 | +0.35% |
| Date | 1 LRD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 0.481 | -1.26% |
| 2026-09-10 | 0.48713 | +1.70% |
| 2026-09-09 | 0.47897 | -2.83% |
| 2026-09-08 | 0.49292 | -0.41% |
| 2026-09-07 | 0.49497 | +2.38% |
| 2026-09-06 | 0.48344 | +0.67% |
| 2026-09-05 | 0.48022 | -1.64% |
| 2026-09-04 | 0.48824 | -0.54% |
| 2026-09-03 | 0.49091 | +2.20% |
| 2026-09-02 | 0.48034 | +0.51% |
| 2026-09-01 | 0.47792 | +0.46% |
| 2026-08-31 | 0.47571 | -0.06% |
| 2026-08-30 | 0.47601 | +0.04% |
| 2026-08-29 | 0.47582 | +0.81% |
| 2026-08-28 | 0.472 | — |
LRD to RUB conversion table
1 LRD0.49429 RUB
5 LRD2.4715 RUB
10 LRD4.9429 RUB
25 LRD12.3573 RUB
50 LRD24.7145 RUB
100 LRD49.4291 RUB
500 LRD247.1454 RUB
1,000 LRD494.2908 RUB
5,000 LRD2,471.4542 RUB
10,000 LRD4,942.9083 RUB
Get the LRD/RUB rate in your app
One GET request returns the latest LRD → 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/LRD/RUB"fetch('https://rate-api.com/api/v1/pair/LRD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 LRD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/LRD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 LRD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/LRD/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 LRD = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "LRD",
"to": "RUB"
},
"rate": 0.4943,
"timestamp": 1790435061,
"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 LRDRussian Ruble → Liberian Dollar2.0231Convert LRD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.