Convert GBP to MZN
British Pound → Mozambican Metical
1 GBP = 84.636809 MZN(1 MZN = 0.0118152 GBP)
Currency converter
1 GBP =
84.6368 MZN
GBP to MZN: last 30 days
Over the last 30 days, 1 GBP traded between 84.3789 and 86.7746 MZN, averaging 85.8863 MZN. The GBP/MZN rate is down 2.43% since 2026-08-28.
- 30-day high
- 86.7746
- 2026-08-30
- 30-day low
- 84.3789
- 2026-09-24
- 30-day average
- 85.8863
- Days with data: 30
- 30-day change
- -2.43%
- since 2026-08-28
86.7746
84.37892026-08-28 → 2026-09-26
| Date | 1 GBP in MZN | Daily change |
|---|---|---|
| 2026-09-26 | 84.6368 | 0.00% |
| 2026-09-25 | 84.6368 | +0.31% |
| 2026-09-24 | 84.3789 | -0.42% |
| 2026-09-23 | 84.7358 | -0.62% |
| 2026-09-22 | 85.2644 | -0.26% |
| 2026-09-21 | 85.4854 | +0.27% |
| 2026-09-20 | 85.2517 | +0.09% |
| 2026-09-19 | 85.1782 | -0.12% |
| 2026-09-18 | 85.2832 | -0.02% |
| 2026-09-17 | 85.3037 | -0.73% |
| 2026-09-16 | 85.9325 | -0.09% |
| 2026-09-15 | 86.0135 | -0.11% |
| 2026-09-14 | 86.1113 | -0.05% |
| 2026-09-13 | 86.1542 | -0.08% |
| 2026-09-12 | 86.2268 | +0.00% |
| Date | 1 GBP in MZN | Daily change |
|---|---|---|
| 2026-09-11 | 86.2239 | -0.08% |
| 2026-09-10 | 86.2887 | -0.26% |
| 2026-09-09 | 86.5165 | +0.08% |
| 2026-09-08 | 86.4489 | +0.11% |
| 2026-09-07 | 86.3511 | -0.06% |
| 2026-09-06 | 86.4012 | +0.06% |
| 2026-09-05 | 86.3452 | +0.01% |
| 2026-09-04 | 86.3339 | +0.28% |
| 2026-09-03 | 86.0921 | +0.07% |
| 2026-09-02 | 86.0309 | -0.38% |
| 2026-09-01 | 86.3602 | -0.04% |
| 2026-08-31 | 86.3987 | -0.43% |
| 2026-08-30 | 86.7746 | +0.10% |
| 2026-08-29 | 86.6861 | -0.07% |
| 2026-08-28 | 86.7446 | — |
GBP to MZN conversion table
1 GBP84.6368 MZN
5 GBP423.1841 MZN
10 GBP846.3681 MZN
25 GBP2,115.9202 MZN
50 GBP4,231.8405 MZN
100 GBP8,463.6809 MZN
500 GBP42,318.405 MZN
1,000 GBP84,636.809 MZN
5,000 GBP423,184.05 MZN
10,000 GBP846,368.09 MZN
Get the GBP/MZN rate in your app
One GET request returns the latest GBP → MZN 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/MZN"fetch('https://rate-api.com/api/v1/pair/GBP/MZN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} MZN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/MZN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} MZN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/MZN');
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']} MZN\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "MZN"
},
"rate": 84.6368,
"timestamp": 1790438060,
"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
MZN to GBPMozambican Metical → British Pound0.011815Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.