Convert TZS to USD
Tanzanian Shilling → US Dollar
1 TZS = 0.000377865 USD(1 USD = 2,646.4492 TZS)
Currency converter
1 TZS =
0.00037786 USD
TZS to USD: last 30 days
Over the last 30 days, 1 TZS traded between 0.00037705 and 0.00037918 USD, averaging 0.000378 USD. The TZS/USD rate is up 0.02% since 2026-08-28.
- 30-day high
- 0.00037918
- 2026-09-13
- 30-day low
- 0.00037705
- 2026-08-31
- 30-day average
- 0.000378
- Days with data: 30
- 30-day change
- +0.02%
- since 2026-08-28
0.00037918
0.000377052026-08-28 → 2026-09-26
| Date | 1 TZS in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00037786 | 0.00% |
| 2026-09-25 | 0.00037786 | +0.08% |
| 2026-09-24 | 0.00037758 | -0.12% |
| 2026-09-23 | 0.00037804 | -0.15% |
| 2026-09-22 | 0.00037859 | +0.26% |
| 2026-09-21 | 0.00037763 | -0.18% |
| 2026-09-20 | 0.00037829 | +0.18% |
| 2026-09-19 | 0.00037762 | +0.04% |
| 2026-09-18 | 0.00037749 | -0.26% |
| 2026-09-17 | 0.00037846 | +0.15% |
| 2026-09-16 | 0.00037789 | -0.08% |
| 2026-09-15 | 0.00037821 | +0.11% |
| 2026-09-14 | 0.0003778 | -0.36% |
| 2026-09-13 | 0.00037918 | +0.29% |
| 2026-09-12 | 0.00037809 | +0.01% |
| Date | 1 TZS in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.00037807 | -0.15% |
| 2026-09-10 | 0.00037865 | +0.13% |
| 2026-09-09 | 0.00037816 | +0.09% |
| 2026-09-08 | 0.00037782 | +0.11% |
| 2026-09-07 | 0.00037742 | -0.25% |
| 2026-09-06 | 0.00037837 | +0.29% |
| 2026-09-05 | 0.00037727 | -0.19% |
| 2026-09-04 | 0.000378 | +0.07% |
| 2026-09-03 | 0.00037773 | -0.24% |
| 2026-09-02 | 0.00037864 | +0.17% |
| 2026-09-01 | 0.000378 | +0.25% |
| 2026-08-31 | 0.00037705 | -0.35% |
| 2026-08-30 | 0.00037836 | +0.12% |
| 2026-08-29 | 0.00037791 | +0.03% |
| 2026-08-28 | 0.0003778 | — |
TZS to USD conversion table
1 TZS0.00037786 USD
5 TZS0.0018893 USD
10 TZS0.0037786 USD
25 TZS0.0094466 USD
50 TZS0.018893 USD
100 TZS0.037786 USD
500 TZS0.18893 USD
1,000 TZS0.37786 USD
5,000 TZS1.8893 USD
10,000 TZS3.7786 USD
Get the TZS/USD rate in your app
One GET request returns the latest TZS → USD 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/TZS/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/TZS/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TZS = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TZS/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TZS = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TZS/USD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TZS = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "TZS",
"to": "USD"
},
"rate": 0.000378,
"timestamp": 1790435071,
"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
USD to TZSUS Dollar → Tanzanian Shilling2,646.4492Convert TZS to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.