Convert GBP to MKD
British Pound → Macedonian Denar
1 GBP = 71.567449 MKD(1 MKD = 0.0139728 GBP)
Currency converter
1 GBP =
71.5674 MKD
GBP to MKD: last 30 days
Over the last 30 days, 1 GBP traded between 71.3108 and 71.864 MKD, averaging 71.6245 MKD. The GBP/MKD rate is down 0.20% since 2026-08-28.
- 30-day high
- 71.864
- 2026-09-15
- 30-day low
- 71.3108
- 2026-09-24
- 30-day average
- 71.6245
- Days with data: 30
- 30-day change
- -0.20%
- since 2026-08-28
71.864
71.31082026-08-28 → 2026-09-26
| Date | 1 GBP in MKD | Daily change |
|---|---|---|
| 2026-09-26 | 71.5674 | 0.00% |
| 2026-09-25 | 71.5674 | +0.36% |
| 2026-09-24 | 71.3108 | -0.00% |
| 2026-09-23 | 71.3134 | -0.45% |
| 2026-09-22 | 71.6369 | -0.13% |
| 2026-09-21 | 71.7319 | +0.18% |
| 2026-09-20 | 71.6036 | +0.02% |
| 2026-09-19 | 71.5899 | +0.10% |
| 2026-09-18 | 71.5161 | -0.37% |
| 2026-09-17 | 71.78 | +0.02% |
| 2026-09-16 | 71.7621 | -0.14% |
| 2026-09-15 | 71.864 | +0.36% |
| 2026-09-14 | 71.6038 | +0.03% |
| 2026-09-13 | 71.5811 | -0.11% |
| 2026-09-12 | 71.6578 | +0.15% |
| Date | 1 GBP in MKD | Daily change |
|---|---|---|
| 2026-09-11 | 71.5473 | +0.04% |
| 2026-09-10 | 71.5175 | -0.32% |
| 2026-09-09 | 71.7435 | +0.10% |
| 2026-09-08 | 71.6748 | +0.03% |
| 2026-09-07 | 71.6524 | +0.06% |
| 2026-09-06 | 71.6097 | +0.01% |
| 2026-09-05 | 71.599 | +0.02% |
| 2026-09-04 | 71.5874 | -0.07% |
| 2026-09-03 | 71.6408 | +0.05% |
| 2026-09-02 | 71.6084 | -0.15% |
| 2026-09-01 | 71.7158 | +0.14% |
| 2026-08-31 | 71.6133 | -0.13% |
| 2026-08-30 | 71.7049 | -0.03% |
| 2026-08-29 | 71.723 | +0.02% |
| 2026-08-28 | 71.7102 | — |
GBP to MKD conversion table
1 GBP71.5674 MKD
5 GBP357.8372 MKD
10 GBP715.6745 MKD
25 GBP1,789.1862 MKD
50 GBP3,578.3724 MKD
100 GBP7,156.7449 MKD
500 GBP35,783.724 MKD
1,000 GBP71,567.449 MKD
5,000 GBP357,837.24 MKD
10,000 GBP715,674.49 MKD
Get the GBP/MKD rate in your app
One GET request returns the latest GBP → MKD 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/MKD"fetch('https://rate-api.com/api/v1/pair/GBP/MKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} MKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/MKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} MKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/MKD');
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']} MKD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "MKD"
},
"rate": 71.5674,
"timestamp": 1790429367,
"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
MKD to GBPMacedonian Denar → British Pound0.013973Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.