Convert GBP to TND
British Pound → Tunisian Dinar
1 GBP = 3.919622 TND(1 TND = 0.255127 GBP)
Currency converter
1 GBP =
3.9196 TND
GBP to TND: last 30 days
Over the last 30 days, 1 GBP traded between 3.8865 and 3.9676 TND, averaging 3.9285 TND. The GBP/TND rate is down 0.62% since 2026-08-28.
- 30-day high
- 3.9676
- 2026-08-29
- 30-day low
- 3.8865
- 2026-09-18
- 30-day average
- 3.9285
- Days with data: 30
- 30-day change
- -0.62%
- since 2026-08-28
3.9676
3.88652026-08-28 → 2026-09-26
| Date | 1 GBP in TND | Daily change |
|---|---|---|
| 2026-09-26 | 3.9196 | 0.00% |
| 2026-09-25 | 3.9196 | +0.34% |
| 2026-09-24 | 3.9065 | -0.27% |
| 2026-09-23 | 3.917 | -0.46% |
| 2026-09-22 | 3.9351 | -0.24% |
| 2026-09-21 | 3.9447 | +0.46% |
| 2026-09-20 | 3.9266 | +0.08% |
| 2026-09-19 | 3.9235 | +0.95% |
| 2026-09-18 | 3.8865 | -0.88% |
| 2026-09-17 | 3.9212 | -0.06% |
| 2026-09-16 | 3.9233 | -0.74% |
| 2026-09-15 | 3.9526 | +1.10% |
| 2026-09-14 | 3.9095 | -0.03% |
| 2026-09-13 | 3.9108 | -0.07% |
| 2026-09-12 | 3.9136 | -0.34% |
| Date | 1 GBP in TND | Daily change |
|---|---|---|
| 2026-09-11 | 3.9271 | +0.13% |
| 2026-09-10 | 3.922 | -0.26% |
| 2026-09-09 | 3.9323 | +0.07% |
| 2026-09-08 | 3.9297 | -0.43% |
| 2026-09-07 | 3.9468 | +0.14% |
| 2026-09-06 | 3.9412 | +0.20% |
| 2026-09-05 | 3.9333 | +0.03% |
| 2026-09-04 | 3.932 | +0.04% |
| 2026-09-03 | 3.9304 | -0.14% |
| 2026-09-02 | 3.936 | -0.09% |
| 2026-09-01 | 3.9396 | +0.97% |
| 2026-08-31 | 3.9019 | -1.49% |
| 2026-08-30 | 3.9609 | -0.17% |
| 2026-08-29 | 3.9676 | +0.59% |
| 2026-08-28 | 3.9441 | — |
GBP to TND conversion table
1 GBP3.9196 TND
5 GBP19.5981 TND
10 GBP39.1962 TND
25 GBP97.9906 TND
50 GBP195.9811 TND
100 GBP391.9622 TND
500 GBP1,959.8112 TND
1,000 GBP3,919.6224 TND
5,000 GBP19,598.112 TND
10,000 GBP39,196.224 TND
Get the GBP/TND rate in your app
One GET request returns the latest GBP → TND 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/TND"fetch('https://rate-api.com/api/v1/pair/GBP/TND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} TND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/TND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} TND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/TND');
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']} TND\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "TND"
},
"rate": 3.9196,
"timestamp": 1790437778,
"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
TND to GBPTunisian Dinar → British Pound0.25513Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.