Convert MYR to GBP
Malaysian Ringgit → British Pound
1 MYR = 0.185218 GBP(1 GBP = 5.399035 MYR)
Currency converter
1 MYR =
0.18522 GBP
MYR to GBP: last 30 days
Over the last 30 days, 1 MYR traded between 0.18113 and 0.18522 GBP, averaging 0.18295 GBP. The MYR/GBP rate is up 1.28% since 2026-08-28.
- 30-day high
- 0.18522
- 2026-09-25
- 30-day low
- 0.18113
- 2026-09-09
- 30-day average
- 0.18295
- Days with data: 30
- 30-day change
- +1.28%
- since 2026-08-28
0.18522
0.181132026-08-28 → 2026-09-26
| Date | 1 MYR in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.18522 | 0.00% |
| 2026-09-25 | 0.18522 | +0.07% |
| 2026-09-24 | 0.18509 | +0.26% |
| 2026-09-23 | 0.18461 | +0.51% |
| 2026-09-22 | 0.18368 | +0.32% |
| 2026-09-21 | 0.18309 | -0.30% |
| 2026-09-20 | 0.18365 | 0.00% |
| 2026-09-19 | 0.18365 | 0.00% |
| 2026-09-18 | 0.18365 | +0.70% |
| 2026-09-17 | 0.18238 | +0.30% |
| 2026-09-16 | 0.18184 | +0.20% |
| 2026-09-15 | 0.18147 | -0.19% |
| 2026-09-14 | 0.18181 | -0.04% |
| 2026-09-13 | 0.18187 | 0.00% |
| 2026-09-12 | 0.18187 | 0.00% |
| Date | 1 MYR in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.18187 | -0.03% |
| 2026-09-10 | 0.18193 | +0.44% |
| 2026-09-09 | 0.18113 | -0.35% |
| 2026-09-08 | 0.18177 | -0.49% |
| 2026-09-07 | 0.18266 | -0.04% |
| 2026-09-06 | 0.18274 | 0.00% |
| 2026-09-05 | 0.18274 | 0.00% |
| 2026-09-04 | 0.18274 | -0.32% |
| 2026-09-03 | 0.18332 | -0.00% |
| 2026-09-02 | 0.18333 | +0.21% |
| 2026-09-01 | 0.18295 | -0.27% |
| 2026-08-31 | 0.18346 | +0.32% |
| 2026-08-30 | 0.18287 | 0.00% |
| 2026-08-29 | 0.18287 | 0.00% |
| 2026-08-28 | 0.18287 | — |
MYR to GBP conversion table
1 MYR0.18522 GBP
5 MYR0.92609 GBP
10 MYR1.8522 GBP
25 MYR4.6305 GBP
50 MYR9.2609 GBP
100 MYR18.5218 GBP
500 MYR92.6091 GBP
1,000 MYR185.2183 GBP
5,000 MYR926.0914 GBP
10,000 MYR1,852.1827 GBP
Get the MYR/GBP rate in your app
One GET request returns the latest MYR → 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/MYR/GBP"fetch('https://rate-api.com/api/v1/pair/MYR/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MYR = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MYR/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MYR = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MYR/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MYR = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "MYR",
"to": "GBP"
},
"rate": 0.1852,
"timestamp": 1790435341,
"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 MYRBritish Pound → Malaysian Ringgit5.399Convert MYR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.