Convert GBP to THB
British Pound → Thai Baht
1 GBP = 44.189668 THB(1 THB = 0.0226297 GBP)
Currency converter
1 GBP =
44.1897 THB
GBP to THB: last 30 days
Over the last 30 days, 1 GBP traded between 44.1897 and 45.0111 THB, averaging 44.5693 THB. The GBP/THB rate is down 1.28% since 2026-08-29.
- 30-day high
- 45.0111
- 2026-09-01
- 30-day low
- 44.1897
- 2026-09-25
- 30-day average
- 44.5693
- Days with data: 30
- 30-day change
- -1.28%
- since 2026-08-29
45.0111
44.18972026-08-29 → 2026-09-27
| Date | 1 GBP in THB | Daily change |
|---|---|---|
| 2026-09-27 | 44.1897 | 0.00% |
| 2026-09-26 | 44.1897 | 0.00% |
| 2026-09-25 | 44.1897 | -0.16% |
| 2026-09-24 | 44.2595 | +0.14% |
| 2026-09-23 | 44.1966 | -0.20% |
| 2026-09-22 | 44.2859 | -0.52% |
| 2026-09-21 | 44.5175 | +0.02% |
| 2026-09-20 | 44.5095 | 0.00% |
| 2026-09-19 | 44.5095 | 0.00% |
| 2026-09-18 | 44.5095 | -0.09% |
| 2026-09-17 | 44.5504 | -0.43% |
| 2026-09-16 | 44.7408 | -0.34% |
| 2026-09-15 | 44.8925 | +0.05% |
| 2026-09-14 | 44.8694 | +0.46% |
| 2026-09-13 | 44.6643 | 0.00% |
| Date | 1 GBP in THB | Daily change |
|---|---|---|
| 2026-09-12 | 44.6643 | 0.00% |
| 2026-09-11 | 44.6643 | +0.12% |
| 2026-09-10 | 44.6101 | +0.04% |
| 2026-09-09 | 44.5944 | +0.02% |
| 2026-09-08 | 44.5852 | +0.17% |
| 2026-09-07 | 44.5092 | -0.07% |
| 2026-09-06 | 44.5407 | 0.00% |
| 2026-09-05 | 44.5407 | 0.00% |
| 2026-09-04 | 44.5407 | +0.05% |
| 2026-09-03 | 44.5202 | -0.62% |
| 2026-09-02 | 44.7976 | -0.47% |
| 2026-09-01 | 45.0111 | +0.24% |
| 2026-08-31 | 44.9025 | +0.32% |
| 2026-08-30 | 44.7612 | 0.00% |
| 2026-08-29 | 44.7612 | — |
GBP to THB conversion table
1 GBP44.1897 THB
5 GBP220.9483 THB
10 GBP441.8967 THB
25 GBP1,104.7417 THB
50 GBP2,209.4834 THB
100 GBP4,418.9668 THB
500 GBP22,094.834 THB
1,000 GBP44,189.668 THB
5,000 GBP220,948.34 THB
10,000 GBP441,896.68 THB
Get the GBP/THB rate in your app
One GET request returns the latest GBP → THB 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/THB"fetch('https://rate-api.com/api/v1/pair/GBP/THB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} THB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/THB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} THB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/THB');
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']} THB\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "THB"
},
"rate": 44.1897,
"timestamp": 1790490079,
"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
THB to GBPThai Baht → British Pound0.02263Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.