Mongolian Tugrik (MNT) ₮
Mongolian Tugrik exchange rates against major world currencies, checked hourly and updated as sources publish.
1 MNT = 0.000277996 USD
1 MNT in other currencies
MNT to USDUS Dollar0.000278MNT to EUREuro0.00024379MNT to GBPBritish Pound0.00020977MNT to JPYJapanese Yen0.043809MNT to CNYChinese Yuan0.0018662MNT to CADCanadian Dollar0.00039316MNT to AUDAustralian Dollar0.00039543MNT to CHFSwiss Franc0.00023026MNT to INRIndian Rupee0.026637MNT to RUBRussian Ruble0.023458
Convert to MNT
USD to MNTUS Dollar3,597.1804EUR to MNTEuro4,101.8648GBP to MNTBritish Pound4,767.1158JPY to MNTJapanese Yen22.8262CNY to MNTChinese Yuan535.8343CAD to MNTCanadian Dollar2,543.4766AUD to MNTAustralian Dollar2,528.8932CHF to MNTSwiss Franc4,342.8955INR to MNTIndian Rupee37.5421RUB to MNTRussian Ruble42.6292
Get MNT rates in your app
One GET request returns every rate against MNT as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=MNT"fetch('https://rate-api.com/api/v1/latest?base=MNT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MNT = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=MNT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MNT = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=MNT');
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['rates']['USD']} USD\n";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.
Rates as of 2026-09-27. For developers: query these via the Rate-API REST API.