Convert GBP to PHP
British Pound → Philippine Peso
1 GBP = 82.798536 PHP(1 PHP = 0.0120775 GBP)
Currency converter
1 GBP =
82.7985 PHP
GBP to PHP: last 30 days
Over the last 30 days, 1 GBP traded between 82.7985 and 84.8375 PHP, averaging 84.2208 PHP. The GBP/PHP rate is down 2.08% since 2026-08-28.
- 30-day high
- 84.8375
- 2026-09-14
- 30-day low
- 82.7985
- 2026-09-25
- 30-day average
- 84.2208
- Days with data: 30
- 30-day change
- -2.08%
- since 2026-08-28
84.8375
82.79852026-08-28 → 2026-09-26
| Date | 1 GBP in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 82.7985 | 0.00% |
| 2026-09-25 | 82.7985 | -0.19% |
| 2026-09-24 | 82.953 | -0.10% |
| 2026-09-23 | 83.0378 | -0.52% |
| 2026-09-22 | 83.4723 | -0.76% |
| 2026-09-21 | 84.1125 | +0.37% |
| 2026-09-20 | 83.8055 | 0.00% |
| 2026-09-19 | 83.8055 | 0.00% |
| 2026-09-18 | 83.8055 | -0.11% |
| 2026-09-17 | 83.8947 | -0.61% |
| 2026-09-16 | 84.4073 | -0.32% |
| 2026-09-15 | 84.6776 | -0.19% |
| 2026-09-14 | 84.8375 | +0.28% |
| 2026-09-13 | 84.5995 | 0.00% |
| 2026-09-12 | 84.5995 | 0.00% |
| Date | 1 GBP in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 84.5995 | -0.01% |
| 2026-09-10 | 84.6045 | -0.19% |
| 2026-09-09 | 84.768 | +0.12% |
| 2026-09-08 | 84.6705 | -0.10% |
| 2026-09-07 | 84.7577 | -0.01% |
| 2026-09-06 | 84.7653 | 0.00% |
| 2026-09-05 | 84.7653 | 0.00% |
| 2026-09-04 | 84.7653 | +0.47% |
| 2026-09-03 | 84.3704 | +0.05% |
| 2026-09-02 | 84.33 | -0.17% |
| 2026-09-01 | 84.4731 | -0.01% |
| 2026-08-31 | 84.4801 | -0.09% |
| 2026-08-30 | 84.5567 | 0.00% |
| 2026-08-29 | 84.5567 | 0.00% |
| 2026-08-28 | 84.5567 | — |
GBP to PHP conversion table
1 GBP82.7985 PHP
5 GBP413.9927 PHP
10 GBP827.9854 PHP
25 GBP2,069.9634 PHP
50 GBP4,139.9268 PHP
100 GBP8,279.8536 PHP
500 GBP41,399.268 PHP
1,000 GBP82,798.536 PHP
5,000 GBP413,992.68 PHP
10,000 GBP827,985.36 PHP
Get the GBP/PHP rate in your app
One GET request returns the latest GBP → PHP 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/PHP"fetch('https://rate-api.com/api/v1/pair/GBP/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/PHP');
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']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "PHP"
},
"rate": 82.7985,
"timestamp": 1790429250,
"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
PHP to GBPPhilippine Peso → British Pound0.012078Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.