Convert EUR to BDT
Euro → Bangladeshi Taka
1 EUR = 140.44096 BDT(1 BDT = 0.00712043 EUR)
Currency converter
1 EUR =
140.441 BDT
EUR to BDT: last 30 days
Over the last 30 days, 1 EUR traded between 140.0017 and 143.5365 BDT, averaging 142.1522 BDT. The EUR/BDT rate is down 2.06% since 2026-08-28.
- 30-day high
- 143.5365
- 2026-08-29
- 30-day low
- 140.0017
- 2026-09-24
- 30-day average
- 142.1522
- Days with data: 30
- 30-day change
- -2.06%
- since 2026-08-28
143.5365
140.00172026-08-28 → 2026-09-26
| Date | 1 EUR in BDT | Daily change |
|---|---|---|
| 2026-09-26 | 140.441 | 0.00% |
| 2026-09-25 | 140.441 | +0.31% |
| 2026-09-24 | 140.0017 | -0.21% |
| 2026-09-23 | 140.2951 | -0.41% |
| 2026-09-22 | 140.8713 | -0.17% |
| 2026-09-21 | 141.1043 | -0.13% |
| 2026-09-20 | 141.287 | +0.38% |
| 2026-09-19 | 140.7584 | +0.03% |
| 2026-09-18 | 140.715 | -0.93% |
| 2026-09-17 | 142.0419 | +0.03% |
| 2026-09-16 | 142.0022 | -0.02% |
| 2026-09-15 | 142.0344 | -0.33% |
| 2026-09-14 | 142.511 | -0.04% |
| 2026-09-13 | 142.5686 | -0.31% |
| 2026-09-12 | 143.0064 | -0.10% |
| Date | 1 EUR in BDT | Daily change |
|---|---|---|
| 2026-09-11 | 143.1557 | +0.13% |
| 2026-09-10 | 142.9732 | -0.05% |
| 2026-09-09 | 143.0435 | +0.24% |
| 2026-09-08 | 142.6983 | -0.14% |
| 2026-09-07 | 142.9012 | -0.37% |
| 2026-09-06 | 143.4326 | +0.42% |
| 2026-09-05 | 142.8278 | +0.02% |
| 2026-09-04 | 142.7967 | +0.28% |
| 2026-09-03 | 142.4022 | +0.20% |
| 2026-09-02 | 142.1138 | -0.17% |
| 2026-09-01 | 142.3542 | -0.74% |
| 2026-08-31 | 143.4188 | -0.02% |
| 2026-08-30 | 143.4426 | -0.07% |
| 2026-08-29 | 143.5365 | +0.10% |
| 2026-08-28 | 143.3886 | — |
EUR to BDT conversion table
1 EUR140.441 BDT
5 EUR702.2048 BDT
10 EUR1,404.4096 BDT
25 EUR3,511.0241 BDT
50 EUR7,022.0481 BDT
100 EUR14,044.096 BDT
500 EUR70,220.481 BDT
1,000 EUR140,440.96 BDT
5,000 EUR702,204.81 BDT
10,000 EUR1,404,409.6 BDT
Get the EUR/BDT rate in your app
One GET request returns the latest EUR → BDT 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/BDT"fetch('https://rate-api.com/api/v1/pair/EUR/BDT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} BDT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/BDT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} BDT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/BDT');
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']} BDT\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "BDT"
},
"rate": 140.441,
"timestamp": 1790429371,
"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
BDT to EURBangladeshi Taka → Euro0.0071204Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.