Convert AUD to TTD
Australian Dollar → Trinidad & Tobago Dollar
1 AUD = 4.780302 TTD(1 TTD = 0.209192 AUD)
Currency converter
1 AUD =
4.7803 TTD
AUD to TTD: last 30 days
Over the last 30 days, 1 AUD traded between 4.7803 and 4.8935 TTD, averaging 4.8473 TTD. The AUD/TTD rate is down 2.05% since 2026-08-28.
- 30-day high
- 4.8935
- 2026-09-09
- 30-day low
- 4.7803
- 2026-09-25
- 30-day average
- 4.8473
- Days with data: 30
- 30-day change
- -2.05%
- since 2026-08-28
4.8935
4.78032026-08-28 → 2026-09-26
| Date | 1 AUD in TTD | Daily change |
|---|---|---|
| 2026-09-26 | 4.7803 | 0.00% |
| 2026-09-25 | 4.7803 | -0.01% |
| 2026-09-24 | 4.7808 | -0.46% |
| 2026-09-23 | 4.8029 | -0.57% |
| 2026-09-22 | 4.8303 | -0.31% |
| 2026-09-21 | 4.8454 | +0.65% |
| 2026-09-20 | 4.814 | -0.47% |
| 2026-09-19 | 4.8367 | +0.07% |
| 2026-09-18 | 4.8333 | -0.08% |
| 2026-09-17 | 4.837 | +0.00% |
| 2026-09-16 | 4.8369 | +0.04% |
| 2026-09-15 | 4.8348 | -0.12% |
| 2026-09-14 | 4.8404 | -0.11% |
| 2026-09-13 | 4.8458 | -0.45% |
| 2026-09-12 | 4.8676 | -0.05% |
| Date | 1 AUD in TTD | Daily change |
|---|---|---|
| 2026-09-11 | 4.87 | -0.15% |
| 2026-09-10 | 4.8772 | -0.33% |
| 2026-09-09 | 4.8935 | +0.16% |
| 2026-09-08 | 4.8857 | -0.14% |
| 2026-09-07 | 4.8925 | +0.66% |
| 2026-09-06 | 4.8605 | -0.49% |
| 2026-09-05 | 4.8845 | +0.26% |
| 2026-09-04 | 4.8718 | +0.11% |
| 2026-09-03 | 4.8663 | +0.43% |
| 2026-09-02 | 4.8455 | +0.45% |
| 2026-09-01 | 4.8237 | -1.20% |
| 2026-08-31 | 4.8822 | +0.57% |
| 2026-08-30 | 4.8547 | -0.17% |
| 2026-08-29 | 4.8628 | -0.36% |
| 2026-08-28 | 4.8804 | — |
AUD to TTD conversion table
1 AUD4.7803 TTD
5 AUD23.9015 TTD
10 AUD47.803 TTD
25 AUD119.5075 TTD
50 AUD239.0151 TTD
100 AUD478.0302 TTD
500 AUD2,390.1507 TTD
1,000 AUD4,780.3015 TTD
5,000 AUD23,901.507 TTD
10,000 AUD47,803.015 TTD
Get the AUD/TTD rate in your app
One GET request returns the latest AUD → TTD 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/TTD"fetch('https://rate-api.com/api/v1/pair/AUD/TTD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} TTD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/TTD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} TTD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/TTD');
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']} TTD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "TTD"
},
"rate": 4.7803,
"timestamp": 1790429298,
"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
TTD to AUDTrinidad & Tobago Dollar → Australian Dollar0.20919Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.