Convert JPY to LRD
Japanese Yen → Liberian Dollar
1 JPY = 1.091375 LRD(1 LRD = 0.916275 JPY)
Currency converter
1 JPY =
1.0914 LRD
JPY to LRD: last 30 days
Over the last 30 days, 1 JPY traded between 1.0897 and 1.1694 LRD, averaging 1.1231 LRD. The JPY/LRD rate is down 3.76% since 2026-08-28.
- 30-day high
- 1.1694
- 2026-09-09
- 30-day low
- 1.0897
- 2026-09-24
- 30-day average
- 1.1231
- Days with data: 30
- 30-day change
- -3.76%
- since 2026-08-28
1.1694
1.08972026-08-28 → 2026-09-26
| Date | 1 JPY in LRD | Daily change |
|---|---|---|
| 2026-09-26 | 1.0914 | 0.00% |
| 2026-09-25 | 1.0914 | +0.16% |
| 2026-09-24 | 1.0897 | -0.66% |
| 2026-09-23 | 1.0969 | -0.43% |
| 2026-09-22 | 1.1017 | +0.25% |
| 2026-09-21 | 1.099 | -0.20% |
| 2026-09-20 | 1.1011 | +0.45% |
| 2026-09-19 | 1.0961 | -0.82% |
| 2026-09-18 | 1.1052 | -1.30% |
| 2026-09-17 | 1.1198 | -0.56% |
| 2026-09-16 | 1.126 | +0.09% |
| 2026-09-15 | 1.1251 | -0.39% |
| 2026-09-14 | 1.1294 | -0.34% |
| 2026-09-13 | 1.1333 | +0.09% |
| 2026-09-12 | 1.1323 | -0.07% |
| Date | 1 JPY in LRD | Daily change |
|---|---|---|
| 2026-09-11 | 1.1332 | +0.13% |
| 2026-09-10 | 1.1317 | -3.23% |
| 2026-09-09 | 1.1694 | +3.14% |
| 2026-09-08 | 1.1338 | +0.27% |
| 2026-09-07 | 1.1308 | -1.32% |
| 2026-09-06 | 1.1459 | +0.18% |
| 2026-09-05 | 1.1438 | +0.69% |
| 2026-09-04 | 1.1359 | -0.34% |
| 2026-09-03 | 1.1398 | +0.64% |
| 2026-09-02 | 1.1326 | +0.43% |
| 2026-09-01 | 1.1277 | -0.33% |
| 2026-08-31 | 1.1314 | -0.02% |
| 2026-08-30 | 1.1317 | -0.23% |
| 2026-08-29 | 1.1343 | +0.02% |
| 2026-08-28 | 1.134 | — |
JPY to LRD conversion table
1 JPY1.0914 LRD
5 JPY5.4569 LRD
10 JPY10.9138 LRD
25 JPY27.2844 LRD
50 JPY54.5688 LRD
100 JPY109.1375 LRD
500 JPY545.6877 LRD
1,000 JPY1,091.3754 LRD
5,000 JPY5,456.8771 LRD
10,000 JPY10,913.754 LRD
Get the JPY/LRD rate in your app
One GET request returns the latest JPY → 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/JPY/LRD"fetch('https://rate-api.com/api/v1/pair/JPY/LRD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} LRD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/LRD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} LRD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/LRD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} LRD\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "LRD"
},
"rate": 1.0914,
"timestamp": 1790429309,
"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 JPYLiberian Dollar → Japanese Yen0.91627Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.