Convert GBP to MOP
British Pound → Macanese Pataca
1 GBP = 10.706996 MOP(1 MOP = 0.0933969 GBP)
Currency converter
1 GBP =
10.707 MOP
GBP to MOP: last 30 days
Over the last 30 days, 1 GBP traded between 10.6788 and 10.9702 MOP, averaging 10.8691 MOP. The GBP/MOP rate is down 2.38% since 2026-08-28.
- 30-day high
- 10.9702
- 2026-08-30
- 30-day low
- 10.6788
- 2026-09-24
- 30-day average
- 10.8691
- Days with data: 30
- 30-day change
- -2.38%
- since 2026-08-28
10.9702
10.67882026-08-28 → 2026-09-26
| Date | 1 GBP in MOP | Daily change |
|---|---|---|
| 2026-09-26 | 10.707 | 0.00% |
| 2026-09-25 | 10.707 | +0.26% |
| 2026-09-24 | 10.6788 | -0.44% |
| 2026-09-23 | 10.7261 | -0.66% |
| 2026-09-22 | 10.7972 | -0.25% |
| 2026-09-21 | 10.8238 | +0.38% |
| 2026-09-20 | 10.7826 | +0.00% |
| 2026-09-19 | 10.7826 | +0.01% |
| 2026-09-18 | 10.7819 | -0.25% |
| 2026-09-17 | 10.809 | -0.58% |
| 2026-09-16 | 10.8718 | -0.20% |
| 2026-09-15 | 10.8933 | -0.07% |
| 2026-09-14 | 10.9013 | -0.10% |
| 2026-09-13 | 10.9123 | +0.00% |
| 2026-09-12 | 10.9119 | +0.02% |
| Date | 1 GBP in MOP | Daily change |
|---|---|---|
| 2026-09-11 | 10.9103 | -0.09% |
| 2026-09-10 | 10.9197 | -0.34% |
| 2026-09-09 | 10.957 | +0.16% |
| 2026-09-08 | 10.939 | +0.13% |
| 2026-09-07 | 10.9251 | -0.01% |
| 2026-09-06 | 10.9264 | -0.00% |
| 2026-09-05 | 10.9269 | +0.00% |
| 2026-09-04 | 10.9266 | +0.23% |
| 2026-09-03 | 10.9018 | +0.11% |
| 2026-09-02 | 10.8895 | -0.33% |
| 2026-09-01 | 10.9255 | -0.06% |
| 2026-08-31 | 10.9318 | -0.35% |
| 2026-08-30 | 10.9702 | +0.02% |
| 2026-08-29 | 10.9679 | +0.00% |
| 2026-08-28 | 10.9679 | — |
GBP to MOP conversion table
1 GBP10.707 MOP
5 GBP53.535 MOP
10 GBP107.07 MOP
25 GBP267.6749 MOP
50 GBP535.3498 MOP
100 GBP1,070.6996 MOP
500 GBP5,353.4982 MOP
1,000 GBP10,706.996 MOP
5,000 GBP53,534.982 MOP
10,000 GBP107,069.96 MOP
Get the GBP/MOP rate in your app
One GET request returns the latest GBP → MOP 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/MOP"fetch('https://rate-api.com/api/v1/pair/GBP/MOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} MOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/MOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} MOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/MOP');
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']} MOP\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "MOP"
},
"rate": 10.707,
"timestamp": 1790429333,
"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
MOP to GBPMacanese Pataca → British Pound0.093397Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.