Convert GBP to KWD
British Pound → Kuwaiti Dinar
1 GBP = 0.408994 KWD(1 KWD = 2.445026 GBP)
Currency converter
1 GBP =
0.40899 KWD
GBP to KWD: last 30 days
Over the last 30 days, 1 GBP traded between 0.40874 and 0.41956 KWD, averaging 0.41503 KWD. The GBP/KWD rate is down 2.52% since 2026-08-29.
- 30-day high
- 0.41956
- 2026-08-30
- 30-day low
- 0.40874
- 2026-09-24
- 30-day average
- 0.41503
- Days with data: 30
- 30-day change
- -2.52%
- since 2026-08-29
0.41956
0.408742026-08-29 → 2026-09-27
| Date | 1 GBP in KWD | Daily change |
|---|---|---|
| 2026-09-27 | 0.40899 | 0.00% |
| 2026-09-26 | 0.40899 | -0.07% |
| 2026-09-25 | 0.40927 | +0.13% |
| 2026-09-24 | 0.40874 | -0.26% |
| 2026-09-23 | 0.40981 | -0.60% |
| 2026-09-22 | 0.41229 | -0.15% |
| 2026-09-21 | 0.41289 | +0.35% |
| 2026-09-20 | 0.41146 | +0.04% |
| 2026-09-19 | 0.41128 | +0.17% |
| 2026-09-18 | 0.41059 | -0.59% |
| 2026-09-17 | 0.41304 | -0.58% |
| 2026-09-16 | 0.41544 | -0.21% |
| 2026-09-15 | 0.41632 | -0.03% |
| 2026-09-14 | 0.41645 | +0.11% |
| 2026-09-13 | 0.416 | -0.13% |
| Date | 1 GBP in KWD | Daily change |
|---|---|---|
| 2026-09-12 | 0.41654 | -0.03% |
| 2026-09-11 | 0.41666 | -0.15% |
| 2026-09-10 | 0.4173 | -0.39% |
| 2026-09-09 | 0.41894 | +0.15% |
| 2026-09-08 | 0.41829 | +0.04% |
| 2026-09-07 | 0.41813 | +0.03% |
| 2026-09-06 | 0.418 | -0.02% |
| 2026-09-05 | 0.41807 | +0.02% |
| 2026-09-04 | 0.41799 | +0.22% |
| 2026-09-03 | 0.41709 | +0.02% |
| 2026-09-02 | 0.41699 | -0.27% |
| 2026-09-01 | 0.41813 | -0.02% |
| 2026-08-31 | 0.41821 | -0.32% |
| 2026-08-30 | 0.41956 | +0.00% |
| 2026-08-29 | 0.41955 | — |
GBP to KWD conversion table
1 GBP0.40899 KWD
5 GBP2.045 KWD
10 GBP4.0899 KWD
25 GBP10.2248 KWD
50 GBP20.4497 KWD
100 GBP40.8994 KWD
500 GBP204.4968 KWD
1,000 GBP408.9936 KWD
5,000 GBP2,044.9681 KWD
10,000 GBP4,089.9363 KWD
Get the GBP/KWD rate in your app
One GET request returns the latest GBP → KWD 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/KWD"fetch('https://rate-api.com/api/v1/pair/GBP/KWD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} KWD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/KWD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} KWD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/KWD');
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']} KWD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "KWD"
},
"rate": 0.409,
"timestamp": 1790490129,
"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
KWD to GBPKuwaiti Dinar → British Pound2.445Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.