Malagasy Ariary (MGA) Ar
Malagasy Ariary exchange rates against major world currencies, checked hourly and updated as sources publish.
1 MGA = 0.000228123 USD
1 MGA in other currencies
MGA to USDUS Dollar0.00022812MGA to EUREuro0.00020005MGA to GBPBritish Pound0.00017214MGA to JPYJapanese Yen0.03595MGA to CNYChinese Yuan0.0015314MGA to CADCanadian Dollar0.00032263MGA to AUDAustralian Dollar0.00032449MGA to CHFSwiss Franc0.00018895MGA to INRIndian Rupee0.021858MGA to RUBRussian Ruble0.019393
Convert to MGA
USD to MGAUS Dollar4,383.6094EUR to MGAEuro4,998.6298GBP to MGABritish Pound5,809.3205JPY to MGAJapanese Yen27.8165CNY to MGAChinese Yuan652.9803CAD to MGACanadian Dollar3,099.541AUD to MGAAustralian Dollar3,081.7693CHF to MGASwiss Franc5,292.3555INR to MGAIndian Rupee45.7497RUB to MGARussian Ruble51.5639
Get MGA rates in your app
One GET request returns every rate against MGA 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=MGA"fetch('https://rate-api.com/api/v1/latest?base=MGA', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MGA = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=MGA",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MGA = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=MGA');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MGA = {$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-26. For developers: query these via the Rate-API REST API.