FOREX · Forex
USDTND
US Dollar vs Tunisian Dinar
3.1319
Market closed · last price 5h ago
Last 24 hours
Bid
3.1154
Ask
3.1483
Day High
3.1334
Day Low
3.1154
USDTND key statistics
1 week
-1.06%
1 month
+5.64%
52w high
3.60985
52w low
2.80022
Avg daily range
+0.38%
History from
14 Aug 2025
Highs and lows are taken from 261 daily bars — the high was set on 08 Jun 2026 and the low on 27 Jan 2026. USDTND is quoted to 5 decimal places, minimum tick 0.00001, spread at last quote 0.03288, quoted in USD on FOREX, sourced from MetaTrader 5 (Broker 1).
USDTND daily history
| Date | Open | High | Low | Close | Change |
|---|---|---|---|---|---|
| 11 Sept 2026 | 3.14992 | 3.14992 | 3.13188 | 3.13188 | -0.57% |
| 09 Sept 2026 | 3.14204 | 3.14204 | 3.11763 | 3.11763 | -0.78% |
| 08 Sept 2026 | 3.15166 | 3.15166 | 3.13667 | 3.13667 | -0.48% |
| 04 Sept 2026 | 3.15498 | 3.15498 | 3.14202 | 3.14202 | -0.41% |
| 02 Sept 2026 | 3.16489 | 3.16489 | 3.15267 | 3.15267 | -0.39% |
| 01 Sept 2026 | 3.16218 | 3.16532 | 3.16218 | 3.16532 | +0.10% |
| 31 Aug 2026 | 3.16415 | 3.16415 | 3.16415 | 3.16415 | +0.00% |
| 28 Aug 2026 | 3.13938 | 3.16159 | 3.13938 | 3.14507 | +0.18% |
| 27 Aug 2026 | 3.16249 | 3.16249 | 3.13973 | 3.13973 | -0.72% |
| 26 Aug 2026 | 3.15752 | 3.15752 | 3.14034 | 3.14034 | -0.54% |
USDTND API access
US Dollar vs Tunisian Dinar prices are available over REST and WebSocket with no API key and no signup. Rate limit is 15,000 requests per minute per IP.
curl
curl "https://biquote.io/api/USDTND"
Python
import requests
r = requests.get("https://biquote.io/api/USDTND")
tick = r.json()
print(tick["mid"], tick["dayDiffPercent"])JavaScript
const r = await fetch("https://biquote.io/api/USDTND");
const tick = await r.json();
console.log(tick.mid, tick.dayDiffPercent);WebSocket
// SignalR hub — pushes every tick for USDTND
const conn = new signalR.HubConnectionBuilder()
.withUrl("https://biquote.io/hubs/tick")
.build();
conn.on("ReceiveTick", t => console.log(t.symbol, t.mid));
await conn.start();
await conn.invoke("Subscribe", "USDTND");Also available for USDTND: daily candles, hourly candles · full API documentation