Convert USD to TND
US Dollar → Tunisian Dinar
1 USD = 2.957677 TND(1 TND = 0.338103 USD)
Currency converter
1 USD =
2.9577 TND
USD to TND: last 30 days
Over the last 30 days, 1 USD traded between 2.8819 and 2.9577 TND, averaging 2.9197 TND. The USD/TND rate is up 1.85% since 2026-08-28.
- 30-day high
- 2.9577
- 2026-09-25
- 30-day low
- 2.8819
- 2026-08-31
- 30-day average
- 2.9197
- Days with data: 30
- 30-day change
- +1.85%
- since 2026-08-28
2.9577
2.88192026-08-28 → 2026-09-26
| Date | 1 USD in TND | Daily change |
|---|---|---|
| 2026-09-26 | 2.9577 | 0.00% |
| 2026-09-25 | 2.9577 | +0.09% |
| 2026-09-24 | 2.9551 | +0.16% |
| 2026-09-23 | 2.9504 | +0.19% |
| 2026-09-22 | 2.9447 | -0.01% |
| 2026-09-21 | 2.945 | +0.08% |
| 2026-09-20 | 2.9425 | +0.08% |
| 2026-09-19 | 2.9402 | +0.95% |
| 2026-09-18 | 2.9125 | -0.64% |
| 2026-09-17 | 2.9314 | +0.54% |
| 2026-09-16 | 2.9157 | -0.54% |
| 2026-09-15 | 2.9315 | +1.19% |
| 2026-09-14 | 2.8971 | +0.07% |
| 2026-09-13 | 2.8951 | -0.07% |
| 2026-09-12 | 2.8973 | -0.34% |
| Date | 1 USD in TND | Daily change |
|---|---|---|
| 2026-09-11 | 2.9073 | +0.22% |
| 2026-09-10 | 2.9008 | +0.07% |
| 2026-09-09 | 2.8989 | -0.08% |
| 2026-09-08 | 2.9011 | -0.54% |
| 2026-09-07 | 2.9169 | +0.14% |
| 2026-09-06 | 2.913 | +0.20% |
| 2026-09-05 | 2.9071 | +0.03% |
| 2026-09-04 | 2.9061 | -0.20% |
| 2026-09-03 | 2.912 | -0.25% |
| 2026-09-02 | 2.9192 | +0.26% |
| 2026-09-01 | 2.9115 | +1.03% |
| 2026-08-31 | 2.8819 | -1.17% |
| 2026-08-30 | 2.9162 | -0.17% |
| 2026-08-29 | 2.9211 | +0.59% |
| 2026-08-28 | 2.9038 | — |
USD to TND conversion table
1 USD2.9577 TND
5 USD14.7884 TND
10 USD29.5768 TND
25 USD73.9419 TND
50 USD147.8839 TND
100 USD295.7677 TND
500 USD1,478.8385 TND
1,000 USD2,957.677 TND
5,000 USD14,788.385 TND
10,000 USD29,576.77 TND
Get the USD/TND rate in your app
One GET request returns the latest USD → 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/USD/TND"fetch('https://rate-api.com/api/v1/pair/USD/TND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} TND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/TND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} TND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/TND');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} TND\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "TND"
},
"rate": 2.9577,
"timestamp": 1790429341,
"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 USDTunisian Dinar → US Dollar0.3381Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.