Convert MGA to USD
Malagasy Ariary → US Dollar
1 MGA = 0.000228123 USD(1 USD = 4,383.6094 MGA)
Currency converter
1 MGA =
0.00022812 USD
MGA to USD: last 30 days
Over the last 30 days, 1 MGA traded between 0.00022683 and 0.00023338 USD, averaging 0.00023048 USD. The MGA/USD rate is down 1.16% since 2026-08-28.
- 30-day high
- 0.00023338
- 2026-09-08
- 30-day low
- 0.00022683
- 2026-09-24
- 30-day average
- 0.00023048
- Days with data: 30
- 30-day change
- -1.16%
- since 2026-08-28
0.00023338
0.000226832026-08-28 → 2026-09-26
| Date | 1 MGA in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00022812 | 0.00% |
| 2026-09-25 | 0.00022812 | +0.57% |
| 2026-09-24 | 0.00022683 | -0.54% |
| 2026-09-23 | 0.00022806 | -0.09% |
| 2026-09-22 | 0.00022827 | -0.94% |
| 2026-09-21 | 0.00023044 | +0.71% |
| 2026-09-20 | 0.00022882 | -0.75% |
| 2026-09-19 | 0.00023053 | +1.20% |
| 2026-09-18 | 0.00022779 | -0.55% |
| 2026-09-17 | 0.00022905 | -0.64% |
| 2026-09-16 | 0.00023053 | -0.12% |
| 2026-09-15 | 0.00023081 | -0.10% |
| 2026-09-14 | 0.00023105 | +0.42% |
| 2026-09-13 | 0.00023009 | -0.37% |
| 2026-09-12 | 0.00023094 | -0.40% |
| Date | 1 MGA in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.00023186 | -0.37% |
| 2026-09-10 | 0.00023271 | +0.52% |
| 2026-09-09 | 0.0002315 | -0.80% |
| 2026-09-08 | 0.00023338 | +0.13% |
| 2026-09-07 | 0.00023308 | +0.97% |
| 2026-09-06 | 0.00023085 | -0.55% |
| 2026-09-05 | 0.00023213 | -0.05% |
| 2026-09-04 | 0.00023223 | +0.25% |
| 2026-09-03 | 0.00023165 | +0.34% |
| 2026-09-02 | 0.00023088 | -0.26% |
| 2026-09-01 | 0.00023149 | +0.36% |
| 2026-08-31 | 0.00023065 | -0.12% |
| 2026-08-30 | 0.00023094 | -0.00% |
| 2026-08-29 | 0.00023094 | +0.06% |
| 2026-08-28 | 0.0002308 | — |
MGA to USD conversion table
1 MGA0.00022812 USD
5 MGA0.0011406 USD
10 MGA0.0022812 USD
25 MGA0.0057031 USD
50 MGA0.011406 USD
100 MGA0.022812 USD
500 MGA0.11406 USD
1,000 MGA0.22812 USD
5,000 MGA1.1406 USD
10,000 MGA2.2812 USD
Get the MGA/USD rate in your app
One GET request returns the latest MGA → 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/MGA/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/MGA/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MGA = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MGA/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MGA = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MGA/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 MGA = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "MGA",
"to": "USD"
},
"rate": 0.000228,
"timestamp": 1790432107,
"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 MGAUS Dollar → Malagasy Ariary4,383.6094Convert MGA to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.