Convert GBP to BRL
British Pound → Brazilian Real
1 GBP = 6.867453 BRL(1 BRL = 0.145614 GBP)
Currency converter
1 GBP =
6.8675 BRL
GBP to BRL: last 30 days
Over the last 30 days, 1 GBP traded between 6.8137 and 7.0347 BRL, averaging 6.9129 BRL. The GBP/BRL rate is down 2.09% since 2026-08-28.
- 30-day high
- 7.0347
- 2026-09-01
- 30-day low
- 6.8137
- 2026-09-23
- 30-day average
- 6.9129
- Days with data: 30
- 30-day change
- -2.09%
- since 2026-08-28
7.0347
6.81372026-08-28 → 2026-09-26
| Date | 1 GBP in BRL | Daily change |
|---|---|---|
| 2026-09-26 | 6.8675 | 0.00% |
| 2026-09-25 | 6.8675 | +0.27% |
| 2026-09-24 | 6.8488 | +0.51% |
| 2026-09-23 | 6.8137 | -0.47% |
| 2026-09-22 | 6.8461 | -0.33% |
| 2026-09-21 | 6.8687 | +0.22% |
| 2026-09-20 | 6.8534 | 0.00% |
| 2026-09-19 | 6.8534 | 0.00% |
| 2026-09-18 | 6.8534 | -0.14% |
| 2026-09-17 | 6.8631 | -0.88% |
| 2026-09-16 | 6.9243 | -0.31% |
| 2026-09-15 | 6.9455 | -0.19% |
| 2026-09-14 | 6.9586 | +0.80% |
| 2026-09-13 | 6.9037 | 0.00% |
| 2026-09-12 | 6.9037 | 0.00% |
| Date | 1 GBP in BRL | Daily change |
|---|---|---|
| 2026-09-11 | 6.9037 | -0.36% |
| 2026-09-10 | 6.9287 | +0.37% |
| 2026-09-09 | 6.903 | -0.29% |
| 2026-09-08 | 6.9233 | -0.18% |
| 2026-09-07 | 6.936 | +0.29% |
| 2026-09-06 | 6.9157 | 0.00% |
| 2026-09-05 | 6.9157 | 0.00% |
| 2026-09-04 | 6.9157 | +0.98% |
| 2026-09-03 | 6.8484 | -1.39% |
| 2026-09-02 | 6.9447 | -1.28% |
| 2026-09-01 | 7.0347 | +0.46% |
| 2026-08-31 | 7.0022 | -0.17% |
| 2026-08-30 | 7.0142 | 0.00% |
| 2026-08-29 | 7.0142 | 0.00% |
| 2026-08-28 | 7.0142 | — |
GBP to BRL conversion table
1 GBP6.8675 BRL
5 GBP34.3373 BRL
10 GBP68.6745 BRL
25 GBP171.6863 BRL
50 GBP343.3727 BRL
100 GBP686.7453 BRL
500 GBP3,433.7265 BRL
1,000 GBP6,867.4531 BRL
5,000 GBP34,337.265 BRL
10,000 GBP68,674.531 BRL
Get the GBP/BRL rate in your app
One GET request returns the latest GBP → BRL 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/BRL"fetch('https://rate-api.com/api/v1/pair/GBP/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/BRL');
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']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "BRL"
},
"rate": 6.8675,
"timestamp": 1790429423,
"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
BRL to GBPBrazilian Real → British Pound0.14561Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.