Convert GBP to ETB
British Pound → Ethiopian Birr
1 GBP = 216.08211 ETB(1 ETB = 0.00462787 GBP)
Currency converter
1 GBP =
216.0821 ETB
GBP to ETB: last 30 days
Over the last 30 days, 1 GBP traded between 214.3163 and 222.2772 ETB, averaging 217.9009 ETB. The GBP/ETB rate is down 2.51% since 2026-08-28.
- 30-day high
- 222.2772
- 2026-08-31
- 30-day low
- 214.3163
- 2026-09-19
- 30-day average
- 217.9009
- Days with data: 30
- 30-day change
- -2.51%
- since 2026-08-28
222.2772
214.31632026-08-28 → 2026-09-26
| Date | 1 GBP in ETB | Daily change |
|---|---|---|
| 2026-09-26 | 216.0821 | 0.00% |
| 2026-09-25 | 216.0821 | -0.08% |
| 2026-09-24 | 216.2524 | +0.71% |
| 2026-09-23 | 214.7373 | -1.28% |
| 2026-09-22 | 217.5219 | -0.50% |
| 2026-09-21 | 218.6251 | +2.00% |
| 2026-09-20 | 214.331 | +0.01% |
| 2026-09-19 | 214.3163 | -0.23% |
| 2026-09-18 | 214.808 | -1.00% |
| 2026-09-17 | 216.9688 | -0.52% |
| 2026-09-16 | 218.095 | +0.22% |
| 2026-09-15 | 217.6164 | -0.06% |
| 2026-09-14 | 217.7433 | -0.02% |
| 2026-09-13 | 217.7833 | +0.09% |
| 2026-09-12 | 217.5931 | -0.07% |
| Date | 1 GBP in ETB | Daily change |
|---|---|---|
| 2026-09-11 | 217.7354 | -1.16% |
| 2026-09-10 | 220.2959 | +0.49% |
| 2026-09-09 | 219.2196 | -0.07% |
| 2026-09-08 | 219.3826 | -0.16% |
| 2026-09-07 | 219.7307 | +0.85% |
| 2026-09-06 | 217.8859 | -0.25% |
| 2026-09-05 | 218.4376 | +0.03% |
| 2026-09-04 | 218.3757 | -0.55% |
| 2026-09-03 | 219.5857 | +0.43% |
| 2026-09-02 | 218.6498 | -0.27% |
| 2026-09-01 | 219.2516 | -1.36% |
| 2026-08-31 | 222.2772 | +1.96% |
| 2026-08-30 | 217.9989 | -0.00% |
| 2026-08-29 | 218.0012 | -1.64% |
| 2026-08-28 | 221.6437 | — |
GBP to ETB conversion table
1 GBP216.0821 ETB
5 GBP1,080.4106 ETB
10 GBP2,160.8211 ETB
25 GBP5,402.0528 ETB
50 GBP10,804.106 ETB
100 GBP21,608.211 ETB
500 GBP108,041.06 ETB
1,000 GBP216,082.11 ETB
5,000 GBP1,080,410.6 ETB
10,000 GBP2,160,821.1 ETB
Get the GBP/ETB rate in your app
One GET request returns the latest GBP → ETB 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/ETB"fetch('https://rate-api.com/api/v1/pair/GBP/ETB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} ETB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/ETB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} ETB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/ETB');
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']} ETB\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "ETB"
},
"rate": 216.0821,
"timestamp": 1790439667,
"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
ETB to GBPEthiopian Birr → British Pound0.0046279Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.