Convert USD to MXN
US Dollar → Mexican Peso
1 USD = 17.6985 MXN(1 MXN = 0.056502 USD)
Currency converter
1 USD =
17.6985 MXN
USD to MXN: last 30 days
Over the last 30 days, 1 USD traded between 16.8991 and 17.6985 MXN, averaging 17.1051 MXN. The USD/MXN rate is up 4.43% since 2026-08-28.
- 30-day high
- 17.6985
- 2026-09-25
- 30-day low
- 16.8991
- 2026-09-04
- 30-day average
- 17.1051
- Days with data: 30
- 30-day change
- +4.43%
- since 2026-08-28
17.6985
16.89912026-08-28 → 2026-09-26
| Date | 1 USD in MXN | Daily change |
|---|---|---|
| 2026-09-26 | 17.6985 | 0.00% |
| 2026-09-25 | 17.6985 | +0.65% |
| 2026-09-24 | 17.5841 | +0.83% |
| 2026-09-23 | 17.4392 | +1.10% |
| 2026-09-22 | 17.2491 | +0.33% |
| 2026-09-21 | 17.1917 | +0.08% |
| 2026-09-20 | 17.1776 | 0.00% |
| 2026-09-19 | 17.1776 | 0.00% |
| 2026-09-18 | 17.1776 | -0.06% |
| 2026-09-17 | 17.1881 | +0.29% |
| 2026-09-16 | 17.1382 | -0.11% |
| 2026-09-15 | 17.1568 | +0.50% |
| 2026-09-14 | 17.0721 | +0.56% |
| 2026-09-13 | 16.9771 | 0.00% |
| 2026-09-12 | 16.9771 | 0.00% |
| Date | 1 USD in MXN | Daily change |
|---|---|---|
| 2026-09-11 | 16.9771 | +0.20% |
| 2026-09-10 | 16.9435 | +0.24% |
| 2026-09-09 | 16.9025 | -0.29% |
| 2026-09-08 | 16.951 | +0.23% |
| 2026-09-07 | 16.9121 | +0.08% |
| 2026-09-06 | 16.8991 | 0.00% |
| 2026-09-05 | 16.8991 | 0.00% |
| 2026-09-04 | 16.8991 | -0.66% |
| 2026-09-03 | 17.0119 | +0.07% |
| 2026-09-02 | 17.0008 | -0.00% |
| 2026-09-01 | 17.0009 | -0.04% |
| 2026-08-31 | 17.0083 | +0.36% |
| 2026-08-30 | 16.9481 | 0.00% |
| 2026-08-29 | 16.9481 | 0.00% |
| 2026-08-28 | 16.9481 | — |
USD to MXN conversion table
1 USD17.6985 MXN
5 USD88.4925 MXN
10 USD176.985 MXN
25 USD442.4625 MXN
50 USD884.925 MXN
100 USD1,769.85 MXN
500 USD8,849.2502 MXN
1,000 USD17,698.5 MXN
5,000 USD88,492.502 MXN
10,000 USD176,985 MXN
Get the USD/MXN rate in your app
One GET request returns the latest USD → 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/USD/MXN"fetch('https://rate-api.com/api/v1/pair/USD/MXN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MXN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MXN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MXN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MXN');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} MXN\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MXN"
},
"rate": 17.6985,
"timestamp": 1790429345,
"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 USDMexican Peso → US Dollar0.056502Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.