Convert MAD to USD
Moroccan Dirham → US Dollar
1 MAD = 0.103981 USD(1 USD = 9.617101 MAD)
Currency converter
1 MAD =
0.10398 USD
MAD to USD: last 30 days
Over the last 30 days, 1 MAD traded between 0.10398 and 0.10806 USD, averaging 0.10612 USD. The MAD/USD rate is down 3.77% since 2026-08-28.
- 30-day high
- 0.10806
- 2026-08-28
- 30-day low
- 0.10398
- 2026-09-25
- 30-day average
- 0.10612
- Days with data: 30
- 30-day change
- -3.77%
- since 2026-08-28
0.10806
0.103982026-08-28 → 2026-09-26
| Date | 1 MAD in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.10398 | 0.00% |
| 2026-09-25 | 0.10398 | -0.15% |
| 2026-09-24 | 0.10414 | -0.15% |
| 2026-09-23 | 0.1043 | -0.58% |
| 2026-09-22 | 0.10491 | -0.21% |
| 2026-09-21 | 0.10513 | +0.05% |
| 2026-09-20 | 0.10507 | -0.08% |
| 2026-09-19 | 0.10516 | +0.16% |
| 2026-09-18 | 0.105 | -0.49% |
| 2026-09-17 | 0.10552 | +0.03% |
| 2026-09-16 | 0.10549 | +0.04% |
| 2026-09-15 | 0.10545 | -0.88% |
| 2026-09-14 | 0.10639 | +0.10% |
| 2026-09-13 | 0.10629 | -0.03% |
| 2026-09-12 | 0.10632 | -0.30% |
| Date | 1 MAD in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.10664 | -0.12% |
| 2026-09-10 | 0.10677 | +0.13% |
| 2026-09-09 | 0.10663 | +0.27% |
| 2026-09-08 | 0.10634 | -0.38% |
| 2026-09-07 | 0.10674 | +0.01% |
| 2026-09-06 | 0.10673 | -0.01% |
| 2026-09-05 | 0.10674 | -0.15% |
| 2026-09-04 | 0.1069 | -0.25% |
| 2026-09-03 | 0.10717 | +0.11% |
| 2026-09-02 | 0.10706 | -0.43% |
| 2026-09-01 | 0.10752 | -0.27% |
| 2026-08-31 | 0.10781 | +0.10% |
| 2026-08-30 | 0.1077 | +0.03% |
| 2026-08-29 | 0.10767 | -0.35% |
| 2026-08-28 | 0.10806 | — |
MAD to USD conversion table
1 MAD0.10398 USD
5 MAD0.51991 USD
10 MAD1.0398 USD
25 MAD2.5995 USD
50 MAD5.1991 USD
100 MAD10.3981 USD
500 MAD51.9907 USD
1,000 MAD103.9814 USD
5,000 MAD519.9072 USD
10,000 MAD1,039.8144 USD
Get the MAD/USD rate in your app
One GET request returns the latest MAD → 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/MAD/USD"fetch('https://rate-api.com/api/v1/pair/MAD/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MAD = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MAD/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MAD = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MAD/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MAD = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "MAD",
"to": "USD"
},
"rate": 0.104,
"timestamp": 1790432067,
"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 MADUS Dollar → Moroccan Dirham9.6171Convert MAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.