Convert GBP to SHP
British Pound → Saint Helena Pound
1 GBP = 1 SHP(1 SHP = 1 GBP)
Currency converter
1 GBP =
1 SHP
GBP to SHP: last 30 days
Over the last 30 days, 1 GBP traded between 0.99618 and 1.0036 SHP, averaging 0.99972 SHP. The GBP/SHP rate is up 0.05% since 2026-08-28.
- 30-day high
- 1.0036
- 2026-08-29
- 30-day low
- 0.99618
- 2026-09-20
- 30-day average
- 0.99972
- Days with data: 30
- 30-day change
- +0.05%
- since 2026-08-28
1.0036
0.996182026-08-28 → 2026-09-26
| Date | 1 GBP in SHP | Daily change |
|---|---|---|
| 2026-09-26 | 1 | 0.00% |
| 2026-09-25 | 1 | 0.00% |
| 2026-09-24 | 1 | 0.00% |
| 2026-09-23 | 1 | +0.14% |
| 2026-09-22 | 0.99856 | -0.23% |
| 2026-09-21 | 1.0009 | +0.47% |
| 2026-09-20 | 0.99618 | -0.01% |
| 2026-09-19 | 0.99631 | -0.12% |
| 2026-09-18 | 0.99751 | -0.24% |
| 2026-09-17 | 0.99991 | +0.18% |
| 2026-09-16 | 0.99815 | -0.18% |
| 2026-09-15 | 0.99991 | +0.07% |
| 2026-09-14 | 0.99923 | +0.07% |
| 2026-09-13 | 0.99853 | +0.00% |
| 2026-09-12 | 0.99852 | -0.21% |
| Date | 1 GBP in SHP | Daily change |
|---|---|---|
| 2026-09-11 | 1.0006 | +0.32% |
| 2026-09-10 | 0.9974 | -0.39% |
| 2026-09-09 | 1.0013 | +0.08% |
| 2026-09-08 | 1.0005 | -0.10% |
| 2026-09-07 | 1.0016 | +0.05% |
| 2026-09-06 | 1.0011 | +0.01% |
| 2026-09-05 | 1.001 | +0.10% |
| 2026-09-04 | 0.99998 | -0.01% |
| 2026-09-03 | 1.0001 | +0.15% |
| 2026-09-02 | 0.99861 | -0.08% |
| 2026-09-01 | 0.99943 | -0.02% |
| 2026-08-31 | 0.9996 | -0.38% |
| 2026-08-30 | 1.0035 | -0.02% |
| 2026-08-29 | 1.0036 | +0.42% |
| 2026-08-28 | 0.99945 | — |
GBP to SHP conversion table
1 GBP1 SHP
5 GBP5 SHP
10 GBP10 SHP
25 GBP25 SHP
50 GBP50 SHP
100 GBP100 SHP
500 GBP500 SHP
1,000 GBP1,000 SHP
5,000 GBP5,000 SHP
10,000 GBP10,000 SHP
Get the GBP/SHP rate in your app
One GET request returns the latest GBP → SHP 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/SHP"fetch('https://rate-api.com/api/v1/pair/GBP/SHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} SHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/SHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} SHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/SHP');
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']} SHP\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "SHP"
},
"rate": 1,
"timestamp": 1790429434,
"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
SHP to GBPSaint Helena Pound → British Pound1Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.