Convert SGD to GBP
Singapore Dollar → British Pound
1 SGD = 0.590847 GBP(1 GBP = 1.692487 SGD)
Currency converter
1 SGD =
0.59085 GBP
SGD to GBP: last 30 days
Over the last 30 days, 1 SGD traded between 0.57912 and 0.59101 GBP, averaging 0.58435 GBP. The SGD/GBP rate is up 2.02% since 2026-08-28.
- 30-day high
- 0.59101
- 2026-09-24
- 30-day low
- 0.57912
- 2026-08-28
- 30-day average
- 0.58435
- Days with data: 30
- 30-day change
- +2.02%
- since 2026-08-28
0.59101
0.579122026-08-28 → 2026-09-26
| Date | 1 SGD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.59085 | 0.00% |
| 2026-09-25 | 0.59085 | -0.03% |
| 2026-09-24 | 0.59101 | +0.30% |
| 2026-09-23 | 0.58922 | +0.37% |
| 2026-09-22 | 0.58706 | +0.24% |
| 2026-09-21 | 0.58563 | -0.10% |
| 2026-09-20 | 0.58619 | 0.00% |
| 2026-09-19 | 0.58619 | 0.00% |
| 2026-09-18 | 0.58619 | -0.00% |
| 2026-09-17 | 0.5862 | +0.44% |
| 2026-09-16 | 0.58366 | +0.14% |
| 2026-09-15 | 0.58284 | -0.07% |
| 2026-09-14 | 0.58327 | -0.10% |
| 2026-09-13 | 0.58388 | 0.00% |
| 2026-09-12 | 0.58388 | 0.00% |
| Date | 1 SGD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.58388 | -0.03% |
| 2026-09-10 | 0.58404 | +0.09% |
| 2026-09-09 | 0.5835 | +0.05% |
| 2026-09-08 | 0.58323 | -0.08% |
| 2026-09-07 | 0.58368 | +0.05% |
| 2026-09-06 | 0.58339 | 0.00% |
| 2026-09-05 | 0.58339 | 0.00% |
| 2026-09-04 | 0.58339 | -0.17% |
| 2026-09-03 | 0.5844 | +0.32% |
| 2026-09-02 | 0.58252 | +0.37% |
| 2026-09-01 | 0.58037 | +0.00% |
| 2026-08-31 | 0.58034 | +0.21% |
| 2026-08-30 | 0.57912 | 0.00% |
| 2026-08-29 | 0.57912 | 0.00% |
| 2026-08-28 | 0.57912 | — |
SGD to GBP conversion table
1 SGD0.59085 GBP
5 SGD2.9542 GBP
10 SGD5.9085 GBP
25 SGD14.7712 GBP
50 SGD29.5423 GBP
100 SGD59.0847 GBP
500 SGD295.4233 GBP
1,000 SGD590.8467 GBP
5,000 SGD2,954.2333 GBP
10,000 SGD5,908.4667 GBP
Get the SGD/GBP rate in your app
One GET request returns the latest SGD → GBP 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/SGD/GBP"fetch('https://rate-api.com/api/v1/pair/SGD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SGD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SGD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SGD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SGD/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SGD = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "SGD",
"to": "GBP"
},
"rate": 0.5908,
"timestamp": 1790432169,
"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
GBP to SGDBritish Pound → Singapore Dollar1.6925Convert SGD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.