Convert RUB to LRD
Russian Ruble → Liberian Dollar
1 RUB = 2.0231 LRD(1 LRD = 0.494291 RUB)
Currency converter
1 RUB =
2.0231 LRD
RUB to LRD: last 30 days
Over the last 30 days, 1 RUB traded between 2.0203 and 2.1187 LRD, averaging 2.0654 LRD. The RUB/LRD rate is down 4.51% since 2026-08-28.
- 30-day high
- 2.1187
- 2026-08-28
- 30-day low
- 2.0203
- 2026-09-07
- 30-day average
- 2.0654
- Days with data: 30
- 30-day change
- -4.51%
- since 2026-08-28
2.1187
2.02032026-08-28 → 2026-09-26
| Date | 1 RUB in LRD | Daily change |
|---|---|---|
| 2026-09-26 | 2.0231 | 0.00% |
| 2026-09-25 | 2.0231 | -0.84% |
| 2026-09-24 | 2.0403 | -0.71% |
| 2026-09-23 | 2.055 | -0.60% |
| 2026-09-22 | 2.0674 | +0.68% |
| 2026-09-21 | 2.0535 | -0.68% |
| 2026-09-20 | 2.0676 | +0.83% |
| 2026-09-19 | 2.0507 | -0.70% |
| 2026-09-18 | 2.0651 | -0.23% |
| 2026-09-17 | 2.0698 | -0.18% |
| 2026-09-16 | 2.0736 | +0.49% |
| 2026-09-15 | 2.0634 | -0.07% |
| 2026-09-14 | 2.0649 | -0.31% |
| 2026-09-13 | 2.0713 | -0.02% |
| 2026-09-12 | 2.0718 | -0.35% |
| Date | 1 RUB in LRD | Daily change |
|---|---|---|
| 2026-09-11 | 2.079 | +1.27% |
| 2026-09-10 | 2.0528 | -1.68% |
| 2026-09-09 | 2.0878 | +2.91% |
| 2026-09-08 | 2.0287 | +0.42% |
| 2026-09-07 | 2.0203 | -2.33% |
| 2026-09-06 | 2.0685 | -0.67% |
| 2026-09-05 | 2.0824 | +1.67% |
| 2026-09-04 | 2.0482 | +0.55% |
| 2026-09-03 | 2.037 | -2.15% |
| 2026-09-02 | 2.0819 | -0.50% |
| 2026-09-01 | 2.0924 | -0.46% |
| 2026-08-31 | 2.1021 | +0.06% |
| 2026-08-30 | 2.1008 | -0.04% |
| 2026-08-29 | 2.1016 | -0.80% |
| 2026-08-28 | 2.1187 | — |
RUB to LRD conversion table
1 RUB2.0231 LRD
5 RUB10.1155 LRD
10 RUB20.231 LRD
25 RUB50.5775 LRD
50 RUB101.155 LRD
100 RUB202.31 LRD
500 RUB1,011.5502 LRD
1,000 RUB2,023.1004 LRD
5,000 RUB10,115.502 LRD
10,000 RUB20,231.004 LRD
Get the RUB/LRD rate in your app
One GET request returns the latest RUB → 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/RUB/LRD"fetch('https://rate-api.com/api/v1/pair/RUB/LRD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} LRD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/LRD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} LRD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/LRD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} LRD\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "LRD"
},
"rate": 2.0231,
"timestamp": 1790432065,
"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 RUBLiberian Dollar → Russian Ruble0.49429Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.