Convert MNT to USD
Mongolian Tugrik → US Dollar
1 MNT = 0.000277937 USD(1 USD = 3,597.9404 MNT)
Currency converter
1 MNT =
0.00027794 USD
MNT to USD: last 30 days
Over the last 30 days, 1 MNT traded between 0.00027774 and 0.00027822 USD, averaging 0.00027795 USD. The MNT/USD rate is up 0.07% since 2026-08-28.
- 30-day high
- 0.00027822
- 2026-09-05
- 30-day low
- 0.00027774
- 2026-08-28
- 30-day average
- 0.00027795
- Days with data: 30
- 30-day change
- +0.07%
- since 2026-08-28
0.00027822
0.000277742026-08-28 → 2026-09-26
| Date | 1 MNT in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00027794 | 0.00% |
| 2026-09-25 | 0.00027794 | +0.06% |
| 2026-09-24 | 0.00027776 | -0.07% |
| 2026-09-23 | 0.00027796 | +0.02% |
| 2026-09-22 | 0.00027789 | +0.05% |
| 2026-09-21 | 0.00027776 | -0.12% |
| 2026-09-20 | 0.00027811 | +0.07% |
| 2026-09-19 | 0.00027791 | +0.03% |
| 2026-09-18 | 0.00027783 | -0.05% |
| 2026-09-17 | 0.00027797 | +0.04% |
| 2026-09-16 | 0.00027785 | -0.07% |
| 2026-09-15 | 0.00027804 | +0.05% |
| 2026-09-14 | 0.0002779 | -0.04% |
| 2026-09-13 | 0.00027803 | +0.02% |
| 2026-09-12 | 0.00027796 | +0.02% |
| Date | 1 MNT in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0002779 | -0.08% |
| 2026-09-10 | 0.00027811 | +0.06% |
| 2026-09-09 | 0.00027794 | +0.00% |
| 2026-09-08 | 0.00027793 | +0.02% |
| 2026-09-07 | 0.00027786 | -0.08% |
| 2026-09-06 | 0.00027807 | -0.05% |
| 2026-09-05 | 0.00027822 | +0.13% |
| 2026-09-04 | 0.00027784 | -0.09% |
| 2026-09-03 | 0.00027809 | +0.05% |
| 2026-09-02 | 0.00027796 | +0.00% |
| 2026-09-01 | 0.00027795 | -0.04% |
| 2026-08-31 | 0.00027805 | -0.02% |
| 2026-08-30 | 0.00027811 | +0.04% |
| 2026-08-29 | 0.00027801 | +0.10% |
| 2026-08-28 | 0.00027774 | — |
MNT to USD conversion table
1 MNT0.00027794 USD
5 MNT0.0013897 USD
10 MNT0.0027794 USD
25 MNT0.0069484 USD
50 MNT0.013897 USD
100 MNT0.027794 USD
500 MNT0.13897 USD
1,000 MNT0.27794 USD
5,000 MNT1.3897 USD
10,000 MNT2.7794 USD
Get the MNT/USD rate in your app
One GET request returns the latest MNT → USD 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/MNT/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/MNT/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MNT = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MNT/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MNT = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MNT/USD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MNT = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "MNT",
"to": "USD"
},
"rate": 0.000278,
"timestamp": 1790432076,
"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
USD to MNTUS Dollar → Mongolian Tugrik3,597.9404Convert MNT to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.