Convert EUR to TZS
Euro → Tanzanian Shilling
1 EUR = 3,017.746 TZS(1 TZS = 0.000331373 EUR)
Currency converter
1 EUR =
3,017.746 TZS
EUR to TZS: last 30 days
Over the last 30 days, 1 EUR traded between 3,010.4815 and 3,081.7766 TZS, averaging 3,055.4048 TZS. The EUR/TZS rate is down 2.08% since 2026-08-28.
- 30-day high
- 3,081.7766
- 2026-08-28
- 30-day low
- 3,010.4815
- 2026-09-24
- 30-day average
- 3,055.4048
- Days with data: 30
- 30-day change
- -2.08%
- since 2026-08-28
3,081.7766
3,010.48152026-08-28 → 2026-09-26
| Date | 1 EUR in TZS | Daily change |
|---|---|---|
| 2026-09-26 | 3,017.746 | 0.00% |
| 2026-09-25 | 3,017.746 | +0.24% |
| 2026-09-24 | 3,010.4815 | -0.26% |
| 2026-09-23 | 3,018.4476 | -0.31% |
| 2026-09-22 | 3,027.791 | -0.49% |
| 2026-09-21 | 3,042.6768 | +0.44% |
| 2026-09-20 | 3,029.396 | -0.18% |
| 2026-09-19 | 3,034.7728 | -0.04% |
| 2026-09-18 | 3,035.8779 | +0.07% |
| 2026-09-17 | 3,033.6517 | -0.63% |
| 2026-09-16 | 3,052.9962 | +0.07% |
| 2026-09-15 | 3,050.9487 | -0.21% |
| 2026-09-14 | 3,057.3907 | +0.01% |
| 2026-09-13 | 3,057.1597 | -0.29% |
| 2026-09-12 | 3,065.9132 | -0.01% |
| Date | 1 EUR in TZS | Daily change |
|---|---|---|
| 2026-09-11 | 3,066.0927 | -0.05% |
| 2026-09-10 | 3,067.7683 | -0.44% |
| 2026-09-09 | 3,081.2223 | +0.24% |
| 2026-09-08 | 3,073.9177 | -0.18% |
| 2026-09-07 | 3,079.3452 | +0.25% |
| 2026-09-06 | 3,071.5557 | -0.29% |
| 2026-09-05 | 3,080.5536 | +0.19% |
| 2026-09-04 | 3,074.5776 | -0.01% |
| 2026-09-03 | 3,074.9268 | +0.56% |
| 2026-09-02 | 3,057.7373 | -0.27% |
| 2026-09-01 | 3,066.1654 | -0.30% |
| 2026-08-31 | 3,075.4587 | -0.06% |
| 2026-08-30 | 3,077.2014 | -0.12% |
| 2026-08-29 | 3,080.8485 | -0.03% |
| 2026-08-28 | 3,081.7766 | — |
EUR to TZS conversion table
1 EUR3,017.746 TZS
5 EUR15,088.73 TZS
10 EUR30,177.46 TZS
25 EUR75,443.649 TZS
50 EUR150,887.3 TZS
100 EUR301,774.6 TZS
500 EUR1,508,873 TZS
1,000 EUR3,017,746 TZS
5,000 EUR15,088,730 TZS
10,000 EUR30,177,460 TZS
Get the EUR/TZS rate in your app
One GET request returns the latest EUR → 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/EUR/TZS"fetch('https://rate-api.com/api/v1/pair/EUR/TZS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} TZS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/TZS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} TZS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/TZS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} TZS\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "TZS"
},
"rate": 3017.746,
"timestamp": 1790447455,
"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
TZS to EURTanzanian Shilling → Euro0.00033137Convert EUR to other currencies
Convert other currencies to TZS
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.