Convert GBP to OMR
British Pound → Omani Rial
1 GBP = 0.50955 OMR(1 OMR = 1.962518 GBP)
Currency converter
1 GBP =
0.50955 OMR
GBP to OMR: last 30 days
Over the last 30 days, 1 GBP traded between 0.50829 and 0.52263 OMR, averaging 0.51767 OMR. The GBP/OMR rate is down 2.50% since 2026-08-28.
- 30-day high
- 0.52263
- 2026-08-28
- 30-day low
- 0.50829
- 2026-09-24
- 30-day average
- 0.51767
- Days with data: 30
- 30-day change
- -2.50%
- since 2026-08-28
0.52263
0.508292026-08-28 → 2026-09-26
| Date | 1 GBP in OMR | Daily change |
|---|---|---|
| 2026-09-26 | 0.50955 | 0.00% |
| 2026-09-25 | 0.50955 | +0.25% |
| 2026-09-24 | 0.50829 | -0.43% |
| 2026-09-23 | 0.51047 | -0.75% |
| 2026-09-22 | 0.51431 | -0.29% |
| 2026-09-21 | 0.51582 | +0.40% |
| 2026-09-20 | 0.51378 | -0.07% |
| 2026-09-19 | 0.51417 | +0.21% |
| 2026-09-18 | 0.51308 | -0.34% |
| 2026-09-17 | 0.51483 | -0.59% |
| 2026-09-16 | 0.51789 | -0.16% |
| 2026-09-15 | 0.5187 | -0.16% |
| 2026-09-14 | 0.51952 | -0.10% |
| 2026-09-13 | 0.52006 | +0.12% |
| 2026-09-12 | 0.51943 | -0.05% |
| Date | 1 GBP in OMR | Daily change |
|---|---|---|
| 2026-09-11 | 0.51971 | -0.13% |
| 2026-09-10 | 0.52038 | -0.33% |
| 2026-09-09 | 0.52211 | +0.13% |
| 2026-09-08 | 0.52143 | +0.14% |
| 2026-09-07 | 0.5207 | +0.01% |
| 2026-09-06 | 0.52066 | +0.14% |
| 2026-09-05 | 0.51993 | -0.13% |
| 2026-09-04 | 0.5206 | +0.22% |
| 2026-09-03 | 0.51947 | +0.06% |
| 2026-09-02 | 0.51918 | -0.30% |
| 2026-09-01 | 0.52076 | -0.04% |
| 2026-08-31 | 0.52098 | +0.06% |
| 2026-08-30 | 0.52067 | -0.14% |
| 2026-08-29 | 0.52137 | -0.24% |
| 2026-08-28 | 0.52263 | — |
GBP to OMR conversion table
1 GBP0.50955 OMR
5 GBP2.5477 OMR
10 GBP5.0955 OMR
25 GBP12.7387 OMR
50 GBP25.4775 OMR
100 GBP50.955 OMR
500 GBP254.7748 OMR
1,000 GBP509.5496 OMR
5,000 GBP2,547.7479 OMR
10,000 GBP5,095.4957 OMR
Get the GBP/OMR rate in your app
One GET request returns the latest GBP → OMR 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/OMR"fetch('https://rate-api.com/api/v1/pair/GBP/OMR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} OMR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/OMR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} OMR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/OMR');
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']} OMR\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "OMR"
},
"rate": 0.5095,
"timestamp": 1790429446,
"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
OMR to GBPOmani Rial → British Pound1.9625Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.