Convert USD to MGA
US Dollar → Malagasy Ariary
1 USD = 4,383.6094 MGA(1 MGA = 0.000228123 USD)
Currency converter
1 USD =
4,383.6094 MGA
USD to MGA: last 30 days
Over the last 30 days, 1 USD traded between 4,284.8928 and 4,408.5948 MGA, averaging 4,338.9216 MGA. The USD/MGA rate is up 1.17% since 2026-08-28.
- 30-day high
- 4,408.5948
- 2026-09-24
- 30-day low
- 4,284.8928
- 2026-09-08
- 30-day average
- 4,338.9216
- Days with data: 30
- 30-day change
- +1.17%
- since 2026-08-28
4,408.5948
4,284.89282026-08-28 → 2026-09-26
| Date | 1 USD in MGA | Daily change |
|---|---|---|
| 2026-09-26 | 4,383.6094 | 0.00% |
| 2026-09-25 | 4,383.6094 | -0.57% |
| 2026-09-24 | 4,408.5948 | +0.54% |
| 2026-09-23 | 4,384.902 | +0.09% |
| 2026-09-22 | 4,380.7423 | +0.95% |
| 2026-09-21 | 4,339.5384 | -0.70% |
| 2026-09-20 | 4,370.3389 | +0.75% |
| 2026-09-19 | 4,337.7363 | -1.19% |
| 2026-09-18 | 4,389.9985 | +0.55% |
| 2026-09-17 | 4,365.9027 | +0.65% |
| 2026-09-16 | 4,337.885 | +0.12% |
| 2026-09-15 | 4,332.5751 | +0.10% |
| 2026-09-14 | 4,328.0485 | -0.42% |
| 2026-09-13 | 4,346.1335 | +0.37% |
| 2026-09-12 | 4,330.2154 | +0.40% |
| Date | 1 USD in MGA | Daily change |
|---|---|---|
| 2026-09-11 | 4,313.0334 | +0.37% |
| 2026-09-10 | 4,297.2462 | -0.52% |
| 2026-09-09 | 4,319.5975 | +0.81% |
| 2026-09-08 | 4,284.8928 | -0.13% |
| 2026-09-07 | 4,290.3429 | -0.96% |
| 2026-09-06 | 4,331.8879 | +0.55% |
| 2026-09-05 | 4,307.991 | +0.05% |
| 2026-09-04 | 4,305.9957 | -0.25% |
| 2026-09-03 | 4,316.8327 | -0.33% |
| 2026-09-02 | 4,331.3319 | +0.26% |
| 2026-09-01 | 4,319.9199 | -0.36% |
| 2026-08-31 | 4,335.5144 | +0.12% |
| 2026-08-30 | 4,330.2226 | +0.00% |
| 2026-08-29 | 4,330.1736 | -0.06% |
| 2026-08-28 | 4,332.8363 | — |
USD to MGA conversion table
1 USD4,383.6094 MGA
5 USD21,918.047 MGA
10 USD43,836.094 MGA
25 USD109,590.24 MGA
50 USD219,180.47 MGA
100 USD438,360.94 MGA
500 USD2,191,804.7 MGA
1,000 USD4,383,609.4 MGA
5,000 USD21,918,047 MGA
10,000 USD43,836,094 MGA
Get the USD/MGA rate in your app
One GET request returns the latest USD → MGA 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/MGA"fetch('https://rate-api.com/api/v1/pair/USD/MGA', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MGA`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MGA",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MGA")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MGA');
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']} MGA\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MGA"
},
"rate": 4383.6094,
"timestamp": 1790429365,
"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
MGA to USDMalagasy Ariary → US Dollar0.00022812Convert USD to other currencies
Convert other currencies to MGA
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.