Convert GBP to IDR
British Pound → Indonesian Rupiah
1 GBP = 23,740.159 IDR(1 IDR = 0.0000421227 GBP)
Currency converter
1 GBP =
23,740.159 IDR
GBP to IDR: last 30 days
Over the last 30 days, 1 GBP traded between 23,625.154 and 24,064.164 IDR, averaging 23,835.864 IDR. The GBP/IDR rate is down 1.35% since 2026-08-28.
- 30-day high
- 24,064.164
- 2026-08-28
- 30-day low
- 23,625.154
- 2026-09-23
- 30-day average
- 23,835.864
- Days with data: 30
- 30-day change
- -1.35%
- since 2026-08-28
24,064.164
23,625.1542026-08-28 → 2026-09-26
| Date | 1 GBP in IDR | Daily change |
|---|---|---|
| 2026-09-26 | 23,740.159 | 0.00% |
| 2026-09-25 | 23,740.159 | +0.14% |
| 2026-09-24 | 23,706.301 | +0.34% |
| 2026-09-23 | 23,625.154 | -0.79% |
| 2026-09-22 | 23,813.342 | -0.51% |
| 2026-09-21 | 23,935.116 | +0.64% |
| 2026-09-20 | 23,783.344 | 0.00% |
| 2026-09-19 | 23,783.344 | 0.00% |
| 2026-09-18 | 23,783.344 | +0.30% |
| 2026-09-17 | 23,712.512 | -0.27% |
| 2026-09-16 | 23,776.525 | -0.36% |
| 2026-09-15 | 23,861.338 | +0.13% |
| 2026-09-14 | 23,831.372 | +0.22% |
| 2026-09-13 | 23,778.198 | 0.00% |
| 2026-09-12 | 23,778.198 | 0.00% |
| Date | 1 GBP in IDR | Daily change |
|---|---|---|
| 2026-09-11 | 23,778.198 | +0.07% |
| 2026-09-10 | 23,760.529 | +0.23% |
| 2026-09-09 | 23,705.914 | -0.55% |
| 2026-09-08 | 23,836.099 | -0.17% |
| 2026-09-07 | 23,877.628 | +0.07% |
| 2026-09-06 | 23,861.453 | 0.00% |
| 2026-09-05 | 23,861.453 | 0.00% |
| 2026-09-04 | 23,861.453 | +0.18% |
| 2026-09-03 | 23,818.329 | -0.28% |
| 2026-09-02 | 23,885.286 | -0.52% |
| 2026-09-01 | 24,010.879 | +0.14% |
| 2026-08-31 | 23,977.796 | -0.36% |
| 2026-08-30 | 24,064.164 | 0.00% |
| 2026-08-29 | 24,064.164 | 0.00% |
| 2026-08-28 | 24,064.164 | — |
GBP to IDR conversion table
1 GBP23,740.159 IDR
5 GBP118,700.8 IDR
10 GBP237,401.59 IDR
25 GBP593,503.98 IDR
50 GBP1,187,008 IDR
100 GBP2,374,015.9 IDR
500 GBP11,870,080 IDR
1,000 GBP23,740,159 IDR
5,000 GBP118,700,796 IDR
10,000 GBP237,401,592 IDR
Get the GBP/IDR rate in your app
One GET request returns the latest GBP → IDR 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/IDR"fetch('https://rate-api.com/api/v1/pair/GBP/IDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} IDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/IDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} IDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/IDR');
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']} IDR\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "IDR"
},
"rate": 23740.1592,
"timestamp": 1790429440,
"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
IDR to GBPIndonesian Rupiah → British Pound0.000042123Convert GBP to other currencies
Convert other currencies to IDR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.