Tanzanian Shilling (TZS) TSh
Tanzanian Shilling exchange rates against major world currencies, checked hourly and updated as sources publish.
1 TZS = 0.000377865 USD
1 TZS in other currencies
TZS to USDUS Dollar0.00037786TZS to EUREuro0.00033137TZS to GBPBritish Pound0.00028513TZS to JPYJapanese Yen0.059548TZS to CNYChinese Yuan0.0025367TZS to CADCanadian Dollar0.00053441TZS to AUDAustralian Dollar0.00053749TZS to CHFSwiss Franc0.00031298TZS to INRIndian Rupee0.036206TZS to RUBRussian Ruble0.032123
Convert to TZS
USD to TZSUS Dollar2,646.4492EUR to TZSEuro3,017.746GBP to TZSBritish Pound3,507.1718JPY to TZSJapanese Yen16.7932CNY to TZSChinese Yuan394.2138CAD to TZSCanadian Dollar1,871.2383AUD to TZSAustralian Dollar1,860.5092CHF to TZSSwiss Franc3,195.0725INR to TZSIndian Rupee27.6197RUB to TZSRussian Ruble31.1299
Get TZS rates in your app
One GET request returns every rate against TZS as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=TZS"fetch('https://rate-api.com/api/v1/latest?base=TZS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TZS = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=TZS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TZS = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=TZS');
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['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.