Convert BRL to GBP
Brazilian Real → British Pound
1 BRL = 0.145614 GBP(1 GBP = 6.867453 BRL)
Currency converter
1 BRL =
0.14561 GBP
BRL to GBP: last 30 days
Over the last 30 days, 1 BRL traded between 0.14215 and 0.14676 GBP, averaging 0.14467 GBP. The BRL/GBP rate is up 2.14% since 2026-08-28.
- 30-day high
- 0.14676
- 2026-09-23
- 30-day low
- 0.14215
- 2026-09-01
- 30-day average
- 0.14467
- Days with data: 30
- 30-day change
- +2.14%
- since 2026-08-28
0.14676
0.142152026-08-28 → 2026-09-26
| Date | 1 BRL in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.14561 | 0.00% |
| 2026-09-25 | 0.14561 | -0.27% |
| 2026-09-24 | 0.14601 | -0.51% |
| 2026-09-23 | 0.14676 | +0.48% |
| 2026-09-22 | 0.14607 | +0.33% |
| 2026-09-21 | 0.14559 | -0.22% |
| 2026-09-20 | 0.14591 | 0.00% |
| 2026-09-19 | 0.14591 | 0.00% |
| 2026-09-18 | 0.14591 | +0.14% |
| 2026-09-17 | 0.14571 | +0.89% |
| 2026-09-16 | 0.14442 | +0.31% |
| 2026-09-15 | 0.14398 | +0.19% |
| 2026-09-14 | 0.14371 | -0.79% |
| 2026-09-13 | 0.14485 | 0.00% |
| 2026-09-12 | 0.14485 | 0.00% |
| Date | 1 BRL in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.14485 | +0.36% |
| 2026-09-10 | 0.14433 | -0.37% |
| 2026-09-09 | 0.14486 | +0.29% |
| 2026-09-08 | 0.14444 | +0.18% |
| 2026-09-07 | 0.14418 | -0.29% |
| 2026-09-06 | 0.1446 | 0.00% |
| 2026-09-05 | 0.1446 | 0.00% |
| 2026-09-04 | 0.1446 | -0.97% |
| 2026-09-03 | 0.14602 | +1.41% |
| 2026-09-02 | 0.14399 | +1.29% |
| 2026-09-01 | 0.14215 | -0.46% |
| 2026-08-31 | 0.14281 | +0.17% |
| 2026-08-30 | 0.14257 | 0.00% |
| 2026-08-29 | 0.14257 | 0.00% |
| 2026-08-28 | 0.14257 | — |
BRL to GBP conversion table
1 BRL0.14561 GBP
5 BRL0.72807 GBP
10 BRL1.4561 GBP
25 BRL3.6404 GBP
50 BRL7.2807 GBP
100 BRL14.5614 GBP
500 BRL72.8072 GBP
1,000 BRL145.6144 GBP
5,000 BRL728.072 GBP
10,000 BRL1,456.1439 GBP
Get the BRL/GBP rate in your app
One GET request returns the latest BRL → 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/BRL/GBP"fetch('https://rate-api.com/api/v1/pair/BRL/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BRL = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BRL/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BRL = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BRL/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BRL = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "BRL",
"to": "GBP"
},
"rate": 0.1456,
"timestamp": 1790432156,
"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 BRLBritish Pound → Brazilian Real6.8675Convert BRL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.