Convert AUD to HNL
Australian Dollar → Honduran Lempira
1 AUD = 18.920101 HNL(1 HNL = 0.0528538 AUD)
Currency converter
1 AUD =
18.9201 HNL
AUD to HNL: last 30 days
Over the last 30 days, 1 AUD traded between 18.8652 and 19.3786 HNL, averaging 19.1919 HNL. The AUD/HNL rate is down 2.19% since 2026-08-29.
- 30-day high
- 19.3786
- 2026-09-09
- 30-day low
- 18.8652
- 2026-09-25
- 30-day average
- 19.1919
- Days with data: 30
- 30-day change
- -2.19%
- since 2026-08-29
19.3786
18.86522026-08-29 → 2026-09-27
| Date | 1 AUD in HNL | Daily change |
|---|---|---|
| 2026-09-27 | 18.9201 | 0.00% |
| 2026-09-26 | 18.9201 | +0.29% |
| 2026-09-25 | 18.8652 | -0.11% |
| 2026-09-24 | 18.886 | -0.51% |
| 2026-09-23 | 18.9837 | -0.66% |
| 2026-09-22 | 19.1104 | -0.33% |
| 2026-09-21 | 19.1737 | +0.08% |
| 2026-09-20 | 19.1592 | -0.01% |
| 2026-09-19 | 19.1607 | -0.03% |
| 2026-09-18 | 19.167 | +0.24% |
| 2026-09-17 | 19.1216 | -0.21% |
| 2026-09-16 | 19.1626 | +0.09% |
| 2026-09-15 | 19.1451 | +0.11% |
| 2026-09-14 | 19.1243 | -0.89% |
| 2026-09-13 | 19.2958 | +0.22% |
| Date | 1 AUD in HNL | Daily change |
|---|---|---|
| 2026-09-12 | 19.2544 | +0.05% |
| 2026-09-11 | 19.2449 | -0.18% |
| 2026-09-10 | 19.2788 | -0.51% |
| 2026-09-09 | 19.3786 | +0.10% |
| 2026-09-08 | 19.3593 | -0.02% |
| 2026-09-07 | 19.3622 | -0.03% |
| 2026-09-06 | 19.3677 | -0.00% |
| 2026-09-05 | 19.3679 | +0.06% |
| 2026-09-04 | 19.3571 | +0.36% |
| 2026-09-03 | 19.2869 | +0.46% |
| 2026-09-02 | 19.1987 | +0.07% |
| 2026-09-01 | 19.1852 | -0.24% |
| 2026-08-31 | 19.2309 | -0.58% |
| 2026-08-30 | 19.3439 | +0.00% |
| 2026-08-29 | 19.3435 | — |
AUD to HNL conversion table
1 AUD18.9201 HNL
5 AUD94.6005 HNL
10 AUD189.201 HNL
25 AUD473.0025 HNL
50 AUD946.0051 HNL
100 AUD1,892.0101 HNL
500 AUD9,460.0507 HNL
1,000 AUD18,920.101 HNL
5,000 AUD94,600.507 HNL
10,000 AUD189,201.01 HNL
Get the AUD/HNL rate in your app
One GET request returns the latest AUD → HNL 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/AUD/HNL"fetch('https://rate-api.com/api/v1/pair/AUD/HNL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} HNL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/HNL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} HNL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/HNL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} HNL\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "HNL"
},
"rate": 18.9201,
"timestamp": 1790482300,
"date": "2026-09-27"
}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
HNL to AUDHonduran Lempira → Australian Dollar0.052854Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.