Convert MXN to CNY
Mexican Peso → Chinese Yuan
1 MXN = 0.379311 CNY(1 CNY = 2.63636 MXN)
Currency converter
1 MXN =
0.37931 CNY
MXN to CNY: last 30 days
Over the last 30 days, 1 MXN traded between 0.37931 and 0.39712 CNY, averaging 0.39236 CNY. The MXN/CNY rate is down 4.35% since 2026-08-28.
- 30-day high
- 0.39712
- 2026-09-04
- 30-day low
- 0.37931
- 2026-09-25
- 30-day average
- 0.39236
- Days with data: 30
- 30-day change
- -4.35%
- since 2026-08-28
0.39712
0.379312026-08-28 → 2026-09-26
| Date | 1 MXN in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.37931 | 0.00% |
| 2026-09-25 | 0.37931 | -0.64% |
| 2026-09-24 | 0.38174 | -0.75% |
| 2026-09-23 | 0.38462 | -0.98% |
| 2026-09-22 | 0.38843 | -0.26% |
| 2026-09-21 | 0.38946 | -0.11% |
| 2026-09-20 | 0.3899 | 0.00% |
| 2026-09-19 | 0.3899 | 0.00% |
| 2026-09-18 | 0.3899 | -0.09% |
| 2026-09-17 | 0.39024 | -0.28% |
| 2026-09-16 | 0.39135 | +0.04% |
| 2026-09-15 | 0.39119 | -0.45% |
| 2026-09-14 | 0.39295 | -0.55% |
| 2026-09-13 | 0.39513 | 0.00% |
| 2026-09-12 | 0.39513 | 0.00% |
| Date | 1 MXN in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.39513 | -0.17% |
| 2026-09-10 | 0.3958 | -0.26% |
| 2026-09-09 | 0.39685 | +0.25% |
| 2026-09-08 | 0.39588 | -0.24% |
| 2026-09-07 | 0.39682 | -0.08% |
| 2026-09-06 | 0.39712 | 0.00% |
| 2026-09-05 | 0.39712 | 0.00% |
| 2026-09-04 | 0.39712 | +0.54% |
| 2026-09-03 | 0.39496 | -0.10% |
| 2026-09-02 | 0.39536 | -0.01% |
| 2026-09-01 | 0.39541 | +0.08% |
| 2026-08-31 | 0.39508 | -0.37% |
| 2026-08-30 | 0.39656 | 0.00% |
| 2026-08-29 | 0.39656 | 0.00% |
| 2026-08-28 | 0.39656 | — |
MXN to CNY conversion table
1 MXN0.37931 CNY
5 MXN1.8966 CNY
10 MXN3.7931 CNY
25 MXN9.4828 CNY
50 MXN18.9655 CNY
100 MXN37.9311 CNY
500 MXN189.6554 CNY
1,000 MXN379.3109 CNY
5,000 MXN1,896.5543 CNY
10,000 MXN3,793.1086 CNY
Get the MXN/CNY rate in your app
One GET request returns the latest MXN → CNY 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/MXN/CNY"fetch('https://rate-api.com/api/v1/pair/MXN/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MXN = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MXN/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MXN = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MXN/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MXN = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "MXN",
"to": "CNY"
},
"rate": 0.3793,
"timestamp": 1790435056,
"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
CNY to MXNChinese Yuan → Mexican Peso2.6364Convert MXN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.