Convert AUD to TND
Australian Dollar → Tunisian Dinar
1 AUD = 2.079309 TND(1 TND = 0.480929 AUD)
Currency converter
1 AUD =
2.0793 TND
AUD to TND: last 30 days
Over the last 30 days, 1 AUD traded between 2.064 and 2.1044 TND, averaging 2.0871 TND. The AUD/TND rate is down 0.48% since 2026-08-28.
- 30-day high
- 2.1044
- 2026-09-07
- 30-day low
- 2.064
- 2026-08-31
- 30-day average
- 2.0871
- Days with data: 30
- 30-day change
- -0.48%
- since 2026-08-28
2.1044
2.0642026-08-28 → 2026-09-26
| Date | 1 AUD in TND | Daily change |
|---|---|---|
| 2026-09-26 | 2.0793 | 0.00% |
| 2026-09-25 | 2.0793 | +0.14% |
| 2026-09-24 | 2.0764 | -0.42% |
| 2026-09-23 | 2.0852 | -0.41% |
| 2026-09-22 | 2.0938 | -0.39% |
| 2026-09-21 | 2.1021 | +0.33% |
| 2026-09-20 | 2.0951 | +0.08% |
| 2026-09-19 | 2.0934 | +0.95% |
| 2026-09-18 | 2.0737 | -0.56% |
| 2026-09-17 | 2.0854 | +0.28% |
| 2026-09-16 | 2.0795 | -0.45% |
| 2026-09-15 | 2.0889 | +1.13% |
| 2026-09-14 | 2.0655 | -0.53% |
| 2026-09-13 | 2.0766 | -0.07% |
| 2026-09-12 | 2.0781 | -0.34% |
| Date | 1 AUD in TND | Daily change |
|---|---|---|
| 2026-09-11 | 2.0852 | +0.05% |
| 2026-09-10 | 2.0842 | -0.49% |
| 2026-09-09 | 2.0944 | +0.07% |
| 2026-09-08 | 2.093 | -0.54% |
| 2026-09-07 | 2.1044 | +0.29% |
| 2026-09-06 | 2.0984 | +0.20% |
| 2026-09-05 | 2.0941 | +0.03% |
| 2026-09-04 | 2.0934 | -0.06% |
| 2026-09-03 | 2.0947 | +0.39% |
| 2026-09-02 | 2.0865 | +0.35% |
| 2026-09-01 | 2.0792 | +0.74% |
| 2026-08-31 | 2.064 | -1.63% |
| 2026-08-30 | 2.0981 | -0.17% |
| 2026-08-29 | 2.1017 | +0.59% |
| 2026-08-28 | 2.0892 | — |
AUD to TND conversion table
1 AUD2.0793 TND
5 AUD10.3965 TND
10 AUD20.7931 TND
25 AUD51.9827 TND
50 AUD103.9655 TND
100 AUD207.9309 TND
500 AUD1,039.6545 TND
1,000 AUD2,079.309 TND
5,000 AUD10,396.545 TND
10,000 AUD20,793.09 TND
Get the AUD/TND rate in your app
One GET request returns the latest AUD → TND 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/TND"fetch('https://rate-api.com/api/v1/pair/AUD/TND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} TND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/TND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} TND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/TND');
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']} TND\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "TND"
},
"rate": 2.0793,
"timestamp": 1790429338,
"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
TND to AUDTunisian Dinar → Australian Dollar0.48093Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.