Convert TTD to AUD
Trinidad & Tobago Dollar → Australian Dollar
1 TTD = 0.209192 AUD(1 AUD = 4.780302 TTD)
Currency converter
1 TTD =
0.20919 AUD
TTD to AUD: last 30 days
Over the last 30 days, 1 TTD traded between 0.20435 and 0.20919 AUD, averaging 0.20631 AUD. The TTD/AUD rate is up 2.09% since 2026-08-28.
- 30-day high
- 0.20919
- 2026-09-25
- 30-day low
- 0.20435
- 2026-09-09
- 30-day average
- 0.20631
- Days with data: 30
- 30-day change
- +2.09%
- since 2026-08-28
0.20919
0.204352026-08-28 → 2026-09-26
| Date | 1 TTD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.20919 | 0.00% |
| 2026-09-25 | 0.20919 | +0.01% |
| 2026-09-24 | 0.20917 | +0.46% |
| 2026-09-23 | 0.20821 | +0.57% |
| 2026-09-22 | 0.20703 | +0.31% |
| 2026-09-21 | 0.20638 | -0.65% |
| 2026-09-20 | 0.20773 | +0.47% |
| 2026-09-19 | 0.20675 | -0.07% |
| 2026-09-18 | 0.2069 | +0.08% |
| 2026-09-17 | 0.20674 | -0.00% |
| 2026-09-16 | 0.20675 | -0.04% |
| 2026-09-15 | 0.20683 | +0.12% |
| 2026-09-14 | 0.2066 | +0.11% |
| 2026-09-13 | 0.20636 | +0.45% |
| 2026-09-12 | 0.20544 | +0.05% |
| Date | 1 TTD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.20534 | +0.15% |
| 2026-09-10 | 0.20503 | +0.33% |
| 2026-09-09 | 0.20435 | -0.16% |
| 2026-09-08 | 0.20468 | +0.14% |
| 2026-09-07 | 0.20439 | -0.65% |
| 2026-09-06 | 0.20574 | +0.49% |
| 2026-09-05 | 0.20473 | -0.26% |
| 2026-09-04 | 0.20526 | -0.11% |
| 2026-09-03 | 0.2055 | -0.43% |
| 2026-09-02 | 0.20638 | -0.45% |
| 2026-09-01 | 0.20731 | +1.21% |
| 2026-08-31 | 0.20482 | -0.56% |
| 2026-08-30 | 0.20598 | +0.17% |
| 2026-08-29 | 0.20564 | +0.36% |
| 2026-08-28 | 0.2049 | — |
TTD to AUD conversion table
1 TTD0.20919 AUD
5 TTD1.046 AUD
10 TTD2.0919 AUD
25 TTD5.2298 AUD
50 TTD10.4596 AUD
100 TTD20.9192 AUD
500 TTD104.5959 AUD
1,000 TTD209.1918 AUD
5,000 TTD1,045.9591 AUD
10,000 TTD2,091.9183 AUD
Get the TTD/AUD rate in your app
One GET request returns the latest TTD → 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/TTD/AUD"fetch('https://rate-api.com/api/v1/pair/TTD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TTD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TTD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TTD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TTD/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TTD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "TTD",
"to": "AUD"
},
"rate": 0.2092,
"timestamp": 1790432060,
"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 TTDAustralian Dollar → Trinidad & Tobago Dollar4.7803Convert TTD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.