Convert GBP to INR
British Pound → Indian Rupee
1 GBP = 126.98065 INR(1 INR = 0.00787522 GBP)
Currency converter
1 GBP =
126.9807 INR
GBP to INR: last 30 days
Over the last 30 days, 1 GBP traded between 126.855 and 129.5637 INR, averaging 128.3461 INR. The GBP/INR rate is down 1.99% since 2026-08-28.
- 30-day high
- 129.5637
- 2026-08-28
- 30-day low
- 126.855
- 2026-09-24
- 30-day average
- 128.3461
- Days with data: 30
- 30-day change
- -1.99%
- since 2026-08-28
129.5637
126.8552026-08-28 → 2026-09-26
| Date | 1 GBP in INR | Daily change |
|---|---|---|
| 2026-09-26 | 126.9807 | 0.00% |
| 2026-09-25 | 126.9807 | +0.10% |
| 2026-09-24 | 126.855 | -0.20% |
| 2026-09-23 | 127.1088 | -0.49% |
| 2026-09-22 | 127.7395 | -0.47% |
| 2026-09-21 | 128.3487 | +0.32% |
| 2026-09-20 | 127.9441 | 0.00% |
| 2026-09-19 | 127.9441 | 0.00% |
| 2026-09-18 | 127.9441 | -0.30% |
| 2026-09-17 | 128.3341 | -0.61% |
| 2026-09-16 | 129.1225 | -0.20% |
| 2026-09-15 | 129.3854 | +0.33% |
| 2026-09-14 | 128.9539 | -0.10% |
| 2026-09-13 | 129.0828 | 0.00% |
| 2026-09-12 | 129.0828 | 0.00% |
| Date | 1 GBP in INR | Daily change |
|---|---|---|
| 2026-09-11 | 129.0828 | +0.04% |
| 2026-09-10 | 129.0375 | +0.02% |
| 2026-09-09 | 129.0152 | +0.44% |
| 2026-09-08 | 128.4524 | +0.47% |
| 2026-09-07 | 127.8516 | +0.01% |
| 2026-09-06 | 127.8447 | 0.00% |
| 2026-09-05 | 127.8447 | 0.00% |
| 2026-09-04 | 127.8447 | +0.24% |
| 2026-09-03 | 127.5341 | -0.40% |
| 2026-09-02 | 128.0489 | -0.33% |
| 2026-09-01 | 128.4775 | -0.29% |
| 2026-08-31 | 128.8519 | -0.55% |
| 2026-08-30 | 129.5637 | 0.00% |
| 2026-08-29 | 129.5637 | 0.00% |
| 2026-08-28 | 129.5637 | — |
GBP to INR conversion table
1 GBP126.9807 INR
5 GBP634.9033 INR
10 GBP1,269.8065 INR
25 GBP3,174.5162 INR
50 GBP6,349.0325 INR
100 GBP12,698.065 INR
500 GBP63,490.325 INR
1,000 GBP126,980.65 INR
5,000 GBP634,903.25 INR
10,000 GBP1,269,806.5 INR
Get the GBP/INR rate in your app
One GET request returns the latest GBP → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/GBP/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "INR"
},
"rate": 126.9806,
"timestamp": 1790429448,
"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
INR to GBPIndian Rupee → British Pound0.0078752Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.