Convert AUD to ETB
Australian Dollar → Ethiopian Birr
1 AUD = 114.62876 ETB(1 ETB = 0.00872381 AUD)
Currency converter
1 AUD =
114.6288 ETB
AUD to ETB: last 30 days
Over the last 30 days, 1 AUD traded between 114.3111 and 117.5778 ETB, averaging 115.7632 ETB. The AUD/ETB rate is down 2.37% since 2026-08-28.
- 30-day high
- 117.5778
- 2026-08-31
- 30-day low
- 114.3111
- 2026-09-23
- 30-day average
- 115.7632
- Days with data: 30
- 30-day change
- -2.37%
- since 2026-08-28
117.5778
114.31112026-08-28 → 2026-09-26
| Date | 1 AUD in ETB | Daily change |
|---|---|---|
| 2026-09-26 | 114.6288 | 0.00% |
| 2026-09-25 | 114.6288 | -0.28% |
| 2026-09-24 | 114.9452 | +0.55% |
| 2026-09-23 | 114.3111 | -1.23% |
| 2026-09-22 | 115.7395 | -0.65% |
| 2026-09-21 | 116.5002 | +1.87% |
| 2026-09-20 | 114.3592 | +0.01% |
| 2026-09-19 | 114.3513 | -0.23% |
| 2026-09-18 | 114.6137 | -0.67% |
| 2026-09-17 | 115.3884 | -0.18% |
| 2026-09-16 | 115.5992 | +0.52% |
| 2026-09-15 | 115.0045 | -0.03% |
| 2026-09-14 | 115.041 | -0.52% |
| 2026-09-13 | 115.6398 | +0.09% |
| 2026-09-12 | 115.5388 | -0.07% |
| Date | 1 AUD in ETB | Daily change |
|---|---|---|
| 2026-09-11 | 115.6143 | -1.24% |
| 2026-09-10 | 117.0696 | +0.26% |
| 2026-09-09 | 116.7608 | -0.07% |
| 2026-09-08 | 116.8452 | -0.27% |
| 2026-09-07 | 117.1591 | +0.99% |
| 2026-09-06 | 116.006 | -0.25% |
| 2026-09-05 | 116.2997 | +0.03% |
| 2026-09-04 | 116.2667 | -0.65% |
| 2026-09-03 | 117.0271 | +0.97% |
| 2026-09-02 | 115.9074 | +0.17% |
| 2026-09-01 | 115.715 | -1.58% |
| 2026-08-31 | 117.5778 | +1.82% |
| 2026-08-30 | 115.4756 | -0.00% |
| 2026-08-29 | 115.4768 | -1.64% |
| 2026-08-28 | 117.4063 | — |
AUD to ETB conversion table
1 AUD114.6288 ETB
5 AUD573.1438 ETB
10 AUD1,146.2876 ETB
25 AUD2,865.7191 ETB
50 AUD5,731.4382 ETB
100 AUD11,462.876 ETB
500 AUD57,314.382 ETB
1,000 AUD114,628.76 ETB
5,000 AUD573,143.82 ETB
10,000 AUD1,146,287.6 ETB
Get the AUD/ETB rate in your app
One GET request returns the latest AUD → ETB 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/ETB"fetch('https://rate-api.com/api/v1/pair/AUD/ETB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} ETB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/ETB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} ETB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/ETB');
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']} ETB\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "ETB"
},
"rate": 114.6288,
"timestamp": 1790429307,
"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
ETB to AUDEthiopian Birr → Australian Dollar0.0087238Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.