Convert GBP to MXN
British Pound → Mexican Peso
1 GBP = 23.454704 MXN(1 MXN = 0.0426354 GBP)
Currency converter
1 GBP =
23.4547 MXN
GBP to MXN: last 30 days
Over the last 30 days, 1 GBP traded between 22.8644 and 23.4547 MXN, averaging 23.0141 MXN. The GBP/MXN rate is up 1.89% since 2026-08-28.
- 30-day high
- 23.4547
- 2026-09-25
- 30-day low
- 22.8644
- 2026-09-04
- 30-day average
- 23.0141
- Days with data: 30
- 30-day change
- +1.89%
- since 2026-08-28
23.4547
22.86442026-08-28 → 2026-09-26
| Date | 1 GBP in MXN | Daily change |
|---|---|---|
| 2026-09-26 | 23.4547 | 0.00% |
| 2026-09-25 | 23.4547 | +0.90% |
| 2026-09-24 | 23.2454 | +0.40% |
| 2026-09-23 | 23.1529 | +0.44% |
| 2026-09-22 | 23.0504 | +0.10% |
| 2026-09-21 | 23.0279 | +0.46% |
| 2026-09-20 | 22.9221 | 0.00% |
| 2026-09-19 | 22.9221 | 0.00% |
| 2026-09-18 | 22.9221 | -0.30% |
| 2026-09-17 | 22.9917 | -0.30% |
| 2026-09-16 | 23.0609 | -0.31% |
| 2026-09-15 | 23.133 | +0.41% |
| 2026-09-14 | 23.038 | +0.46% |
| 2026-09-13 | 22.9327 | 0.00% |
| 2026-09-12 | 22.9327 | 0.00% |
| Date | 1 GBP in MXN | Daily change |
|---|---|---|
| 2026-09-11 | 22.9327 | +0.11% |
| 2026-09-10 | 22.9081 | -0.09% |
| 2026-09-09 | 22.928 | -0.14% |
| 2026-09-08 | 22.9611 | +0.34% |
| 2026-09-07 | 22.8833 | +0.08% |
| 2026-09-06 | 22.8644 | 0.00% |
| 2026-09-05 | 22.8644 | 0.00% |
| 2026-09-04 | 22.8644 | -0.42% |
| 2026-09-03 | 22.9611 | +0.17% |
| 2026-09-02 | 22.9223 | -0.36% |
| 2026-09-01 | 23.004 | -0.10% |
| 2026-08-31 | 23.0278 | +0.03% |
| 2026-08-30 | 23.0198 | 0.00% |
| 2026-08-29 | 23.0198 | 0.00% |
| 2026-08-28 | 23.0198 | — |
GBP to MXN conversion table
1 GBP23.4547 MXN
5 GBP117.2735 MXN
10 GBP234.547 MXN
25 GBP586.3676 MXN
50 GBP1,172.7352 MXN
100 GBP2,345.4704 MXN
500 GBP11,727.352 MXN
1,000 GBP23,454.704 MXN
5,000 GBP117,273.52 MXN
10,000 GBP234,547.04 MXN
Get the GBP/MXN rate in your app
One GET request returns the latest GBP → MXN 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/MXN"fetch('https://rate-api.com/api/v1/pair/GBP/MXN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} MXN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/MXN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} MXN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/MXN');
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']} MXN\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "MXN"
},
"rate": 23.4547,
"timestamp": 1790429429,
"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
MXN to GBPMexican Peso → British Pound0.042635Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.