Convert HNL to USD
Honduran Lempira → US Dollar
1 HNL = 0.0372655 USD(1 USD = 26.834467 HNL)
Currency converter
1 HNL =
0.037266 USD
HNL to USD: last 30 days
Over the last 30 days, 1 HNL traded between 0.037147 and 0.037296 USD, averaging 0.037227 USD. The HNL/USD rate is up 0.02% since 2026-08-28.
- 30-day high
- 0.037296
- 2026-09-03
- 30-day low
- 0.037147
- 2026-09-18
- 30-day average
- 0.037227
- Days with data: 30
- 30-day change
- +0.02%
- since 2026-08-28
0.037296
0.0371472026-08-28 → 2026-09-26
| Date | 1 HNL in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.037266 | 0.00% |
| 2026-09-25 | 0.037266 | +0.16% |
| 2026-09-24 | 0.037206 | -0.06% |
| 2026-09-23 | 0.037229 | +0.06% |
| 2026-09-22 | 0.037207 | -0.05% |
| 2026-09-21 | 0.037227 | +0.17% |
| 2026-09-20 | 0.037162 | +0.01% |
| 2026-09-19 | 0.037159 | +0.03% |
| 2026-09-18 | 0.037147 | -0.15% |
| 2026-09-17 | 0.037203 | -0.04% |
| 2026-09-16 | 0.037219 | +0.00% |
| 2026-09-15 | 0.037219 | -0.17% |
| 2026-09-14 | 0.03728 | +0.29% |
| 2026-09-13 | 0.037172 | -0.21% |
| 2026-09-12 | 0.037252 | -0.05% |
| Date | 1 HNL in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.03727 | +0.00% |
| 2026-09-10 | 0.037269 | -0.04% |
| 2026-09-09 | 0.037283 | +0.05% |
| 2026-09-08 | 0.037266 | +0.02% |
| 2026-09-07 | 0.037261 | +0.18% |
| 2026-09-06 | 0.037194 | +0.00% |
| 2026-09-05 | 0.037193 | -0.06% |
| 2026-09-04 | 0.037214 | -0.22% |
| 2026-09-03 | 0.037296 | +0.18% |
| 2026-09-02 | 0.037229 | +0.02% |
| 2026-09-01 | 0.037223 | -0.05% |
| 2026-08-31 | 0.037241 | +0.13% |
| 2026-08-30 | 0.037194 | -0.00% |
| 2026-08-29 | 0.037195 | -0.17% |
| 2026-08-28 | 0.037258 | — |
HNL to USD conversion table
1 HNL0.037266 USD
5 HNL0.18633 USD
10 HNL0.37266 USD
25 HNL0.93164 USD
50 HNL1.8633 USD
100 HNL3.7266 USD
500 HNL18.6328 USD
1,000 HNL37.2655 USD
5,000 HNL186.3275 USD
10,000 HNL372.6551 USD
Get the HNL/USD rate in your app
One GET request returns the latest HNL → USD 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/HNL/USD"fetch('https://rate-api.com/api/v1/pair/HNL/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HNL = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HNL/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HNL = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HNL/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 HNL = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "HNL",
"to": "USD"
},
"rate": 0.0373,
"timestamp": 1790435145,
"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
USD to HNLUS Dollar → Honduran Lempira26.8345Convert HNL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.