Convert GBP to BDT
British Pound → Bangladeshi Taka
1 GBP = 163.21804 BDT(1 BDT = 0.00612677 GBP)
Currency converter
1 GBP =
163.218 BDT
GBP to BDT: last 30 days
Over the last 30 days, 1 GBP traded between 162.8191 and 167.4521 BDT, averaging 165.6185 BDT. The GBP/BDT rate is down 2.43% since 2026-08-28.
- 30-day high
- 167.4521
- 2026-08-31
- 30-day low
- 162.8191
- 2026-09-24
- 30-day average
- 165.6185
- Days with data: 30
- 30-day change
- -2.43%
- since 2026-08-28
167.4521
162.81912026-08-28 → 2026-09-26
| Date | 1 GBP in BDT | Daily change |
|---|---|---|
| 2026-09-26 | 163.218 | 0.00% |
| 2026-09-25 | 163.218 | +0.25% |
| 2026-09-24 | 162.8191 | -0.25% |
| 2026-09-23 | 163.2287 | -0.61% |
| 2026-09-22 | 164.2238 | -0.17% |
| 2026-09-21 | 164.4957 | -0.01% |
| 2026-09-20 | 164.5166 | +0.38% |
| 2026-09-19 | 163.901 | +0.03% |
| 2026-09-18 | 163.8505 | -0.99% |
| 2026-09-17 | 165.4919 | -0.08% |
| 2026-09-16 | 165.6211 | -0.21% |
| 2026-09-15 | 165.9672 | -0.31% |
| 2026-09-14 | 166.4904 | +0.22% |
| 2026-09-13 | 166.1329 | -0.31% |
| 2026-09-12 | 166.6431 | -0.10% |
| Date | 1 GBP in BDT | Daily change |
|---|---|---|
| 2026-09-11 | 166.8171 | +0.24% |
| 2026-09-10 | 166.4113 | -0.07% |
| 2026-09-09 | 166.5257 | +0.06% |
| 2026-09-08 | 166.4307 | +0.04% |
| 2026-09-07 | 166.3706 | -0.37% |
| 2026-09-06 | 166.9803 | +0.42% |
| 2026-09-05 | 166.2762 | +0.02% |
| 2026-09-04 | 166.24 | +0.46% |
| 2026-09-03 | 165.4779 | -0.01% |
| 2026-09-02 | 165.4983 | -0.42% |
| 2026-09-01 | 166.1948 | -0.75% |
| 2026-08-31 | 167.4521 | +0.07% |
| 2026-08-30 | 167.3386 | -0.07% |
| 2026-08-29 | 167.4482 | +0.10% |
| 2026-08-28 | 167.2757 | — |
GBP to BDT conversion table
1 GBP163.218 BDT
5 GBP816.0902 BDT
10 GBP1,632.1804 BDT
25 GBP4,080.451 BDT
50 GBP8,160.902 BDT
100 GBP16,321.804 BDT
500 GBP81,609.02 BDT
1,000 GBP163,218.04 BDT
5,000 GBP816,090.2 BDT
10,000 GBP1,632,180.4 BDT
Get the GBP/BDT rate in your app
One GET request returns the latest GBP → 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/GBP/BDT"fetch('https://rate-api.com/api/v1/pair/GBP/BDT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} BDT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/BDT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} BDT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/BDT');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} BDT\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "BDT"
},
"rate": 163.218,
"timestamp": 1790429395,
"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 GBPBangladeshi Taka → British Pound0.0061268Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.