Convert GBP to MDL
British Pound → Moldovan Leu
1 GBP = 23.307901 MDL(1 MDL = 0.0429039 GBP)
Currency converter
1 GBP =
23.3079 MDL
GBP to MDL: last 30 days
Over the last 30 days, 1 GBP traded between 23.1823 and 23.5198 MDL, averaging 23.3698 MDL. The GBP/MDL rate is up 0.30% since 2026-08-28.
- 30-day high
- 23.5198
- 2026-08-31
- 30-day low
- 23.1823
- 2026-09-01
- 30-day average
- 23.3698
- Days with data: 30
- 30-day change
- +0.30%
- since 2026-08-28
23.5198
23.18232026-08-28 → 2026-09-26
| Date | 1 GBP in MDL | Daily change |
|---|---|---|
| 2026-09-26 | 23.3079 | 0.00% |
| 2026-09-25 | 23.3079 | +0.24% |
| 2026-09-24 | 23.2511 | -0.42% |
| 2026-09-23 | 23.3493 | -0.49% |
| 2026-09-22 | 23.4635 | -0.20% |
| 2026-09-21 | 23.5109 | +0.58% |
| 2026-09-20 | 23.3746 | -0.28% |
| 2026-09-19 | 23.4412 | +0.08% |
| 2026-09-18 | 23.4232 | -0.13% |
| 2026-09-17 | 23.4544 | +0.28% |
| 2026-09-16 | 23.3881 | -0.26% |
| 2026-09-15 | 23.4486 | +0.28% |
| 2026-09-14 | 23.3829 | +0.43% |
| 2026-09-13 | 23.2837 | -0.39% |
| 2026-09-12 | 23.3751 | +0.08% |
| Date | 1 GBP in MDL | Daily change |
|---|---|---|
| 2026-09-11 | 23.3566 | +0.05% |
| 2026-09-10 | 23.3438 | -0.07% |
| 2026-09-09 | 23.3591 | -0.03% |
| 2026-09-08 | 23.3652 | +0.23% |
| 2026-09-07 | 23.3105 | -0.13% |
| 2026-09-06 | 23.3399 | +0.18% |
| 2026-09-05 | 23.2989 | -0.29% |
| 2026-09-04 | 23.3667 | +0.03% |
| 2026-09-03 | 23.3602 | +0.11% |
| 2026-09-02 | 23.3349 | +0.66% |
| 2026-09-01 | 23.1823 | -1.43% |
| 2026-08-31 | 23.5198 | +0.20% |
| 2026-08-30 | 23.4717 | -0.06% |
| 2026-08-29 | 23.4854 | +1.06% |
| 2026-08-28 | 23.238 | — |
GBP to MDL conversion table
1 GBP23.3079 MDL
5 GBP116.5395 MDL
10 GBP233.079 MDL
25 GBP582.6975 MDL
50 GBP1,165.3951 MDL
100 GBP2,330.7901 MDL
500 GBP11,653.951 MDL
1,000 GBP23,307.901 MDL
5,000 GBP116,539.51 MDL
10,000 GBP233,079.01 MDL
Get the GBP/MDL rate in your app
One GET request returns the latest GBP → MDL 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/MDL"fetch('https://rate-api.com/api/v1/pair/GBP/MDL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} MDL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/MDL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} MDL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/MDL');
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']} MDL\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "MDL"
},
"rate": 23.3079,
"timestamp": 1790437621,
"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
MDL to GBPMoldovan Leu → British Pound0.042904Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.