Convert USD to LRD
US Dollar → Liberian Dollar
1 USD = 171.98997 LRD(1 LRD = 0.00581429 USD)
Currency converter
1 USD =
171.99 LRD
USD to LRD: last 30 days
Over the last 30 days, 1 USD traded between 171.99 and 181.1181 LRD, averaging 176.0294 LRD. The USD/LRD rate is down 5.02% since 2026-08-28.
- 30-day high
- 181.1181
- 2026-08-29
- 30-day low
- 171.99
- 2026-09-25
- 30-day average
- 176.0294
- Days with data: 30
- 30-day change
- -5.02%
- since 2026-08-28
181.1181
171.992026-08-28 → 2026-09-26
| Date | 1 USD in LRD | Daily change |
|---|---|---|
| 2026-09-26 | 171.99 | 0.00% |
| 2026-09-25 | 171.99 | -0.64% |
| 2026-09-24 | 173.0985 | -0.07% |
| 2026-09-23 | 173.2272 | +0.04% |
| 2026-09-22 | 173.1632 | +0.19% |
| 2026-09-21 | 172.8332 | -0.59% |
| 2026-09-20 | 173.8543 | +0.45% |
| 2026-09-19 | 173.0687 | -0.82% |
| 2026-09-18 | 174.5024 | +0.10% |
| 2026-09-17 | 174.3362 | -0.15% |
| 2026-09-16 | 174.5896 | +0.12% |
| 2026-09-15 | 174.3844 | -0.10% |
| 2026-09-14 | 174.554 | -0.01% |
| 2026-09-13 | 174.5762 | +0.09% |
| 2026-09-12 | 174.425 | -0.07% |
| Date | 1 USD in LRD | Daily change |
|---|---|---|
| 2026-09-11 | 174.554 | +0.04% |
| 2026-09-10 | 174.4821 | -2.65% |
| 2026-09-09 | 179.2339 | +2.45% |
| 2026-09-08 | 174.9528 | -0.02% |
| 2026-09-07 | 174.9855 | -2.27% |
| 2026-09-06 | 179.0463 | +0.18% |
| 2026-09-05 | 178.7165 | +0.69% |
| 2026-09-04 | 177.4909 | -0.19% |
| 2026-09-03 | 177.8279 | -1.62% |
| 2026-09-02 | 180.7565 | +0.08% |
| 2026-09-01 | 180.6131 | -0.06% |
| 2026-08-31 | 180.719 | +0.01% |
| 2026-08-30 | 180.7076 | -0.23% |
| 2026-08-29 | 181.1181 | +0.02% |
| 2026-08-28 | 181.0839 | — |
USD to LRD conversion table
1 USD171.99 LRD
5 USD859.9499 LRD
10 USD1,719.8997 LRD
25 USD4,299.7492 LRD
50 USD8,599.4985 LRD
100 USD17,198.997 LRD
500 USD85,994.985 LRD
1,000 USD171,989.97 LRD
5,000 USD859,949.85 LRD
10,000 USD1,719,899.7 LRD
Get the USD/LRD rate in your app
One GET request returns the latest USD → 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/USD/LRD"fetch('https://rate-api.com/api/v1/pair/USD/LRD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} LRD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/LRD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} LRD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/LRD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} LRD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "LRD"
},
"rate": 171.99,
"timestamp": 1790429312,
"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 USDLiberian Dollar → US Dollar0.0058143Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.