Convert TND to AUD
Tunisian Dinar → Australian Dollar
1 TND = 0.480929 AUD(1 AUD = 2.079309 TND)
Currency converter
1 TND =
0.48093 AUD
TND to AUD: last 30 days
Over the last 30 days, 1 TND traded between 0.47519 and 0.4845 AUD, averaging 0.47915 AUD. The TND/AUD rate is up 0.48% since 2026-08-28.
- 30-day high
- 0.4845
- 2026-08-31
- 30-day low
- 0.47519
- 2026-09-07
- 30-day average
- 0.47915
- Days with data: 30
- 30-day change
- +0.48%
- since 2026-08-28
0.4845
0.475192026-08-28 → 2026-09-26
| Date | 1 TND in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.48093 | 0.00% |
| 2026-09-25 | 0.48093 | -0.14% |
| 2026-09-24 | 0.4816 | +0.42% |
| 2026-09-23 | 0.47958 | +0.42% |
| 2026-09-22 | 0.4776 | +0.39% |
| 2026-09-21 | 0.47572 | -0.33% |
| 2026-09-20 | 0.47731 | -0.08% |
| 2026-09-19 | 0.47768 | -0.94% |
| 2026-09-18 | 0.48223 | +0.56% |
| 2026-09-17 | 0.47953 | -0.28% |
| 2026-09-16 | 0.48088 | +0.45% |
| 2026-09-15 | 0.47873 | -1.12% |
| 2026-09-14 | 0.48414 | +0.53% |
| 2026-09-13 | 0.48157 | +0.07% |
| 2026-09-12 | 0.48121 | +0.34% |
| Date | 1 TND in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.47956 | -0.05% |
| 2026-09-10 | 0.47979 | +0.49% |
| 2026-09-09 | 0.47745 | -0.07% |
| 2026-09-08 | 0.47778 | +0.54% |
| 2026-09-07 | 0.47519 | -0.29% |
| 2026-09-06 | 0.47656 | -0.20% |
| 2026-09-05 | 0.47752 | -0.03% |
| 2026-09-04 | 0.47768 | +0.06% |
| 2026-09-03 | 0.4774 | -0.39% |
| 2026-09-02 | 0.47928 | -0.35% |
| 2026-09-01 | 0.48095 | -0.73% |
| 2026-08-31 | 0.4845 | +1.65% |
| 2026-08-30 | 0.47662 | +0.17% |
| 2026-08-29 | 0.47582 | -0.59% |
| 2026-08-28 | 0.47864 | — |
TND to AUD conversion table
1 TND0.48093 AUD
5 TND2.4046 AUD
10 TND4.8093 AUD
25 TND12.0232 AUD
50 TND24.0465 AUD
100 TND48.0929 AUD
500 TND240.4645 AUD
1,000 TND480.929 AUD
5,000 TND2,404.6451 AUD
10,000 TND4,809.2901 AUD
Get the TND/AUD rate in your app
One GET request returns the latest TND → AUD 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/TND/AUD"fetch('https://rate-api.com/api/v1/pair/TND/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TND = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TND/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TND = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TND/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TND = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "TND",
"to": "AUD"
},
"rate": 0.4809,
"timestamp": 1790432083,
"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
AUD to TNDAustralian Dollar → Tunisian Dinar2.0793Convert TND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.