Convert EUR to GBP
Euro → British Pound
1 EUR = 0.86045 GBP(1 GBP = 1.162183 EUR)
Currency converter
1 EUR =
0.86045 GBP
EUR to GBP: last 30 days
Over the last 30 days, 1 EUR traded between 0.8558 and 0.86055 GBP, averaging 0.85832 GBP. The EUR/GBP rate is up 0.38% since 2026-08-28.
- 30-day high
- 0.86055
- 2026-09-03
- 30-day low
- 0.8558
- 2026-09-15
- 30-day average
- 0.85832
- Days with data: 30
- 30-day change
- +0.38%
- since 2026-08-28
0.86055
0.85582026-08-28 → 2026-09-26
| Date | 1 EUR in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.86045 | 0.00% |
| 2026-09-25 | 0.86045 | +0.07% |
| 2026-09-24 | 0.85986 | +0.04% |
| 2026-09-23 | 0.8595 | +0.20% |
| 2026-09-22 | 0.8578 | +0.00% |
| 2026-09-21 | 0.8578 | -0.12% |
| 2026-09-20 | 0.8588 | 0.00% |
| 2026-09-19 | 0.8588 | 0.00% |
| 2026-09-18 | 0.8588 | +0.06% |
| 2026-09-17 | 0.8583 | +0.11% |
| 2026-09-16 | 0.85739 | +0.19% |
| 2026-09-15 | 0.8558 | -0.02% |
| 2026-09-14 | 0.85597 | -0.26% |
| 2026-09-13 | 0.85816 | 0.00% |
| 2026-09-12 | 0.85816 | 0.00% |
| Date | 1 EUR in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.85816 | -0.12% |
| 2026-09-10 | 0.85916 | +0.02% |
| 2026-09-09 | 0.85899 | +0.18% |
| 2026-09-08 | 0.8574 | -0.18% |
| 2026-09-07 | 0.85893 | -0.01% |
| 2026-09-06 | 0.85898 | 0.00% |
| 2026-09-05 | 0.85898 | 0.00% |
| 2026-09-04 | 0.85898 | -0.18% |
| 2026-09-03 | 0.86055 | +0.22% |
| 2026-09-02 | 0.8587 | +0.25% |
| 2026-09-01 | 0.85655 | +0.01% |
| 2026-08-31 | 0.85648 | -0.08% |
| 2026-08-30 | 0.8572 | 0.00% |
| 2026-08-29 | 0.8572 | 0.00% |
| 2026-08-28 | 0.8572 | — |
EUR to GBP conversion table
1 EUR0.86045 GBP
5 EUR4.3023 GBP
10 EUR8.6045 GBP
25 EUR21.5113 GBP
50 EUR43.0225 GBP
100 EUR86.045 GBP
500 EUR430.225 GBP
1,000 EUR860.45 GBP
5,000 EUR4,302.25 GBP
10,000 EUR8,604.5 GBP
Get the EUR/GBP rate in your app
One GET request returns the latest EUR → 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/EUR/GBP"fetch('https://rate-api.com/api/v1/pair/EUR/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "GBP"
},
"rate": 0.8605,
"timestamp": 1790429438,
"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 EURBritish Pound → Euro1.1622Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.