Convert USD to TZS
US Dollar → Tanzanian Shilling
1 USD = 2,647.1978 TZS(1 TZS = 0.000377758 USD)
Currency converter
1 USD =
2,647.1978 TZS
USD to TZS: last 30 days
Over the last 30 days, 1 USD traded between 2,637.2894 and 2,652.1833 TZS, averaging 2,645.5714 TZS. The USD/TZS rate is up 0.04% since 2026-08-29.
- 30-day high
- 2,652.1833
- 2026-08-31
- 30-day low
- 2,637.2894
- 2026-09-13
- 30-day average
- 2,645.5714
- Days with data: 30
- 30-day change
- +0.04%
- since 2026-08-29
2,652.1833
2,637.28942026-08-29 → 2026-09-27
| Date | 1 USD in TZS | Daily change |
|---|---|---|
| 2026-09-27 | 2,647.1978 | 0.00% |
| 2026-09-26 | 2,647.1978 | +0.03% |
| 2026-09-25 | 2,646.4492 | -0.08% |
| 2026-09-24 | 2,648.4398 | +0.12% |
| 2026-09-23 | 2,645.2087 | +0.15% |
| 2026-09-22 | 2,641.3541 | -0.25% |
| 2026-09-21 | 2,648.1025 | +0.18% |
| 2026-09-20 | 2,643.4509 | -0.18% |
| 2026-09-19 | 2,648.1427 | -0.04% |
| 2026-09-18 | 2,649.1071 | +0.26% |
| 2026-09-17 | 2,642.3106 | -0.15% |
| 2026-09-16 | 2,646.276 | +0.08% |
| 2026-09-15 | 2,644.0436 | -0.11% |
| 2026-09-14 | 2,646.8748 | +0.36% |
| 2026-09-13 | 2,637.2894 | -0.29% |
| Date | 1 USD in TZS | Daily change |
|---|---|---|
| 2026-09-12 | 2,644.8407 | -0.01% |
| 2026-09-11 | 2,644.9955 | +0.15% |
| 2026-09-10 | 2,640.9804 | -0.13% |
| 2026-09-09 | 2,644.3666 | -0.09% |
| 2026-09-08 | 2,646.7353 | -0.11% |
| 2026-09-07 | 2,649.5918 | +0.25% |
| 2026-09-06 | 2,642.8894 | -0.29% |
| 2026-09-05 | 2,650.6315 | +0.19% |
| 2026-09-04 | 2,645.4896 | -0.07% |
| 2026-09-03 | 2,647.389 | +0.24% |
| 2026-09-02 | 2,640.9983 | -0.17% |
| 2026-09-01 | 2,645.5182 | -0.25% |
| 2026-08-31 | 2,652.1833 | +0.35% |
| 2026-08-30 | 2,642.9775 | -0.12% |
| 2026-08-29 | 2,646.11 | — |
USD to TZS conversion table
1 USD2,647.1978 TZS
5 USD13,235.989 TZS
10 USD26,471.978 TZS
25 USD66,179.946 TZS
50 USD132,359.89 TZS
100 USD264,719.78 TZS
500 USD1,323,598.9 TZS
1,000 USD2,647,197.8 TZS
5,000 USD13,235,989 TZS
10,000 USD26,471,978 TZS
Get the USD/TZS rate in your app
One GET request returns the latest USD → TZS 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/TZS"fetch('https://rate-api.com/api/v1/pair/USD/TZS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} TZS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/TZS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} TZS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/TZS');
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']} TZS\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "TZS"
},
"rate": 2647.1978,
"timestamp": 1790470783,
"date": "2026-09-27"
}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
TZS to USDTanzanian Shilling → US Dollar0.00037776Convert USD to other currencies
Convert other currencies to TZS
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.