Convert GBP to YER
British Pound → Yemeni Rial
1 GBP = 313.53556 YER(1 YER = 0.00318943 GBP)
Currency converter
1 GBP =
313.5356 YER
GBP to YER: last 30 days
Over the last 30 days, 1 GBP traded between 312.7772 and 321.9217 YER, averaging 318.6555 YER. The GBP/YER rate is down 2.47% since 2026-08-28.
- 30-day high
- 321.9217
- 2026-08-29
- 30-day low
- 312.7772
- 2026-09-24
- 30-day average
- 318.6555
- Days with data: 30
- 30-day change
- -2.47%
- since 2026-08-28
321.9217
312.77722026-08-28 → 2026-09-26
| Date | 1 GBP in YER | Daily change |
|---|---|---|
| 2026-09-26 | 313.5356 | 0.00% |
| 2026-09-25 | 313.5356 | +0.24% |
| 2026-09-24 | 312.7772 | -0.43% |
| 2026-09-23 | 314.118 | -0.65% |
| 2026-09-22 | 316.1613 | -0.24% |
| 2026-09-21 | 316.9225 | +0.39% |
| 2026-09-20 | 315.703 | -0.01% |
| 2026-09-19 | 315.7234 | -0.02% |
| 2026-09-18 | 315.79 | -0.22% |
| 2026-09-17 | 316.472 | -0.57% |
| 2026-09-16 | 318.2961 | -0.21% |
| 2026-09-15 | 318.9569 | -0.29% |
| 2026-09-14 | 319.881 | -0.08% |
| 2026-09-13 | 320.1456 | -0.02% |
| 2026-09-12 | 320.2118 | +0.01% |
| Date | 1 GBP in YER | Daily change |
|---|---|---|
| 2026-09-11 | 320.184 | -0.09% |
| 2026-09-10 | 320.4861 | -0.32% |
| 2026-09-09 | 321.5216 | +0.16% |
| 2026-09-08 | 321.0208 | +0.11% |
| 2026-09-07 | 320.6826 | +0.01% |
| 2026-09-06 | 320.6419 | -0.01% |
| 2026-09-05 | 320.6714 | +0.00% |
| 2026-09-04 | 320.6594 | +0.23% |
| 2026-09-03 | 319.9179 | +0.11% |
| 2026-09-02 | 319.5667 | -0.35% |
| 2026-09-01 | 320.6984 | +0.10% |
| 2026-08-31 | 320.387 | -0.37% |
| 2026-08-30 | 321.5909 | -0.10% |
| 2026-08-29 | 321.9217 | +0.14% |
| 2026-08-28 | 321.4841 | — |
GBP to YER conversion table
1 GBP313.5356 YER
5 GBP1,567.6778 YER
10 GBP3,135.3556 YER
25 GBP7,838.389 YER
50 GBP15,676.778 YER
100 GBP31,353.556 YER
500 GBP156,767.78 YER
1,000 GBP313,535.56 YER
5,000 GBP1,567,677.8 YER
10,000 GBP3,135,355.6 YER
Get the GBP/YER rate in your app
One GET request returns the latest GBP → YER 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/YER"fetch('https://rate-api.com/api/v1/pair/GBP/YER', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} YER`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/YER",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} YER")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/YER');
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']} YER\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "YER"
},
"rate": 313.5356,
"timestamp": 1790429390,
"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
YER to GBPYemeni Rial → British Pound0.0031894Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.