Convert QAR to GBP
Qatari Rial → British Pound
1 QAR = 0.207303 GBP(1 GBP = 4.823862 QAR)
Currency converter
1 QAR =
0.2073 GBP
QAR to GBP: last 30 days
Over the last 30 days, 1 QAR traded between 0.20226 and 0.20782 GBP, averaging 0.20417 GBP. The QAR/GBP rate is up 2.49% since 2026-08-28.
- 30-day high
- 0.20782
- 2026-09-24
- 30-day low
- 0.20226
- 2026-08-28
- 30-day average
- 0.20417
- Days with data: 30
- 30-day change
- +2.49%
- since 2026-08-28
0.20782
0.202262026-08-28 → 2026-09-26
| Date | 1 QAR in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.2073 | 0.00% |
| 2026-09-25 | 0.2073 | -0.25% |
| 2026-09-24 | 0.20782 | +0.43% |
| 2026-09-23 | 0.20693 | +0.65% |
| 2026-09-22 | 0.20558 | +0.24% |
| 2026-09-21 | 0.2051 | -0.38% |
| 2026-09-20 | 0.20588 | 0.00% |
| 2026-09-19 | 0.20588 | +0.13% |
| 2026-09-18 | 0.20561 | +0.11% |
| 2026-09-17 | 0.20538 | +0.59% |
| 2026-09-16 | 0.20417 | +0.20% |
| 2026-09-15 | 0.20375 | +0.08% |
| 2026-09-14 | 0.20358 | +0.10% |
| 2026-09-13 | 0.20338 | 0.00% |
| 2026-09-12 | 0.20338 | 0.00% |
| Date | 1 QAR in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.20338 | +0.09% |
| 2026-09-10 | 0.2032 | +0.33% |
| 2026-09-09 | 0.20253 | -0.14% |
| 2026-09-08 | 0.20282 | -0.11% |
| 2026-09-07 | 0.20304 | -0.01% |
| 2026-09-06 | 0.20305 | 0.00% |
| 2026-09-05 | 0.20305 | 0.00% |
| 2026-09-04 | 0.20305 | -0.24% |
| 2026-09-03 | 0.20354 | -0.10% |
| 2026-09-02 | 0.20376 | +0.36% |
| 2026-09-01 | 0.20303 | +0.06% |
| 2026-08-31 | 0.20291 | +0.32% |
| 2026-08-30 | 0.20226 | 0.00% |
| 2026-08-29 | 0.20226 | 0.00% |
| 2026-08-28 | 0.20226 | — |
QAR to GBP conversion table
1 QAR0.2073 GBP
5 QAR1.0365 GBP
10 QAR2.073 GBP
25 QAR5.1826 GBP
50 QAR10.3651 GBP
100 QAR20.7303 GBP
500 QAR103.6514 GBP
1,000 QAR207.3028 GBP
5,000 QAR1,036.5139 GBP
10,000 QAR2,073.0278 GBP
Get the QAR/GBP rate in your app
One GET request returns the latest QAR → 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/QAR/GBP"fetch('https://rate-api.com/api/v1/pair/QAR/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 QAR = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/QAR/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 QAR = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/QAR/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 QAR = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "QAR",
"to": "GBP"
},
"rate": 0.2073,
"timestamp": 1790435228,
"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 QARBritish Pound → Qatari Rial4.8239Convert QAR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.