Convert GBP to TRY
British Pound → Turkish Lira
1 GBP = 64.846882 TRY(1 TRY = 0.0154209 GBP)
Currency converter
1 GBP =
64.8469 TRY
GBP to TRY: last 30 days
Over the last 30 days, 1 GBP traded between 64.584 and 65.7596 TRY, averaging 65.3473 TRY. The GBP/TRY rate is down 1.04% since 2026-08-28.
- 30-day high
- 65.7596
- 2026-09-09
- 30-day low
- 64.584
- 2026-09-24
- 30-day average
- 65.3473
- Days with data: 30
- 30-day change
- -1.04%
- since 2026-08-28
65.7596
64.5842026-08-28 → 2026-09-26
| Date | 1 GBP in TRY | Daily change |
|---|---|---|
| 2026-09-26 | 64.8469 | 0.00% |
| 2026-09-25 | 64.8469 | +0.41% |
| 2026-09-24 | 64.584 | -0.39% |
| 2026-09-23 | 64.838 | -0.59% |
| 2026-09-22 | 65.2234 | -0.22% |
| 2026-09-21 | 65.3651 | +0.41% |
| 2026-09-20 | 65.0996 | 0.00% |
| 2026-09-19 | 65.0996 | 0.00% |
| 2026-09-18 | 65.0996 | -0.02% |
| 2026-09-17 | 65.1101 | -0.55% |
| 2026-09-16 | 65.4722 | -0.17% |
| 2026-09-15 | 65.5826 | -0.05% |
| 2026-09-14 | 65.6145 | -0.04% |
| 2026-09-13 | 65.6437 | 0.00% |
| 2026-09-12 | 65.6437 | 0.00% |
| Date | 1 GBP in TRY | Daily change |
|---|---|---|
| 2026-09-11 | 65.6437 | +0.12% |
| 2026-09-10 | 65.5666 | -0.29% |
| 2026-09-09 | 65.7596 | +0.18% |
| 2026-09-08 | 65.6417 | +0.17% |
| 2026-09-07 | 65.5332 | -0.02% |
| 2026-09-06 | 65.5432 | 0.00% |
| 2026-09-05 | 65.5432 | 0.00% |
| 2026-09-04 | 65.5432 | +0.51% |
| 2026-09-03 | 65.2112 | +0.15% |
| 2026-09-02 | 65.1139 | -0.32% |
| 2026-09-01 | 65.3199 | -0.03% |
| 2026-08-31 | 65.3425 | -0.28% |
| 2026-08-30 | 65.5289 | 0.00% |
| 2026-08-29 | 65.5289 | 0.00% |
| 2026-08-28 | 65.5289 | — |
GBP to TRY conversion table
1 GBP64.8469 TRY
5 GBP324.2344 TRY
10 GBP648.4688 TRY
25 GBP1,621.1721 TRY
50 GBP3,242.3441 TRY
100 GBP6,484.6882 TRY
500 GBP32,423.441 TRY
1,000 GBP64,846.882 TRY
5,000 GBP324,234.41 TRY
10,000 GBP648,468.82 TRY
Get the GBP/TRY rate in your app
One GET request returns the latest GBP → TRY 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/TRY"fetch('https://rate-api.com/api/v1/pair/GBP/TRY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} TRY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/TRY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} TRY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/TRY');
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']} TRY\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "TRY"
},
"rate": 64.8469,
"timestamp": 1790429313,
"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
TRY to GBPTurkish Lira → British Pound0.015421Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.