Convert USD to MZN
US Dollar → Mozambican Metical
1 USD = 63.865424 MZN(1 MZN = 0.0156579 USD)
Currency converter
1 USD =
63.8654 MZN
USD to MZN: last 30 days
Over the last 30 days, 1 USD traded between 63.7713 and 63.9104 MZN, averaging 63.8284 MZN. The USD/MZN rate has not changed since 2026-08-28.
- 30-day high
- 63.9104
- 2026-09-18
- 30-day low
- 63.7713
- 2026-09-17
- 30-day average
- 63.8284
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
63.9104
63.77132026-08-28 → 2026-09-26
| Date | 1 USD in MZN | Daily change |
|---|---|---|
| 2026-09-26 | 63.8654 | 0.00% |
| 2026-09-25 | 63.8654 | +0.06% |
| 2026-09-24 | 63.8287 | +0.01% |
| 2026-09-23 | 63.8248 | +0.03% |
| 2026-09-22 | 63.8051 | -0.02% |
| 2026-09-21 | 63.82 | -0.10% |
| 2026-09-20 | 63.8867 | +0.09% |
| 2026-09-19 | 63.8317 | -0.12% |
| 2026-09-18 | 63.9104 | +0.22% |
| 2026-09-17 | 63.7713 | -0.14% |
| 2026-09-16 | 63.8624 | +0.11% |
| 2026-09-15 | 63.7927 | -0.03% |
| 2026-09-14 | 63.8119 | +0.05% |
| 2026-09-13 | 63.78 | -0.08% |
| 2026-09-12 | 63.8337 | +0.00% |
| Date | 1 USD in MZN | Daily change |
|---|---|---|
| 2026-09-11 | 63.8315 | +0.02% |
| 2026-09-10 | 63.8217 | +0.07% |
| 2026-09-09 | 63.78 | -0.06% |
| 2026-09-08 | 63.8209 | +0.00% |
| 2026-09-07 | 63.8186 | -0.06% |
| 2026-09-06 | 63.8591 | +0.06% |
| 2026-09-05 | 63.8177 | +0.01% |
| 2026-09-04 | 63.8094 | +0.04% |
| 2026-09-03 | 63.7856 | -0.03% |
| 2026-09-02 | 63.8065 | -0.03% |
| 2026-09-01 | 63.8236 | +0.01% |
| 2026-08-31 | 63.8141 | -0.11% |
| 2026-08-30 | 63.8869 | +0.10% |
| 2026-08-29 | 63.8218 | -0.07% |
| 2026-08-28 | 63.8649 | — |
USD to MZN conversion table
1 USD63.8654 MZN
5 USD319.3271 MZN
10 USD638.6542 MZN
25 USD1,596.6356 MZN
50 USD3,193.2712 MZN
100 USD6,386.5424 MZN
500 USD31,932.712 MZN
1,000 USD63,865.424 MZN
5,000 USD319,327.12 MZN
10,000 USD638,654.24 MZN
Get the USD/MZN rate in your app
One GET request returns the latest USD → MZN 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/MZN"fetch('https://rate-api.com/api/v1/pair/USD/MZN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MZN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MZN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MZN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MZN');
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']} MZN\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MZN"
},
"rate": 63.8654,
"timestamp": 1790437926,
"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
MZN to USDMozambican Metical → US Dollar0.015658Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.