Convert USD to MAD
US Dollar → Moroccan Dirham
1 USD = 9.617101 MAD(1 MAD = 0.103981 USD)
Currency converter
1 USD =
9.6171 MAD
USD to MAD: last 30 days
Over the last 30 days, 1 USD traded between 9.2545 and 9.6171 MAD, averaging 9.4244 MAD. The USD/MAD rate is up 3.92% since 2026-08-28.
- 30-day high
- 9.6171
- 2026-09-25
- 30-day low
- 9.2545
- 2026-08-28
- 30-day average
- 9.4244
- Days with data: 30
- 30-day change
- +3.92%
- since 2026-08-28
9.6171
9.25452026-08-28 → 2026-09-26
| Date | 1 USD in MAD | Daily change |
|---|---|---|
| 2026-09-26 | 9.6171 | 0.00% |
| 2026-09-25 | 9.6171 | +0.15% |
| 2026-09-24 | 9.6023 | +0.15% |
| 2026-09-23 | 9.588 | +0.59% |
| 2026-09-22 | 9.5322 | +0.21% |
| 2026-09-21 | 9.5121 | -0.05% |
| 2026-09-20 | 9.517 | +0.08% |
| 2026-09-19 | 9.509 | -0.16% |
| 2026-09-18 | 9.524 | +0.49% |
| 2026-09-17 | 9.4772 | -0.03% |
| 2026-09-16 | 9.4796 | -0.04% |
| 2026-09-15 | 9.4829 | +0.89% |
| 2026-09-14 | 9.3992 | -0.10% |
| 2026-09-13 | 9.4083 | +0.03% |
| 2026-09-12 | 9.4058 | +0.30% |
| Date | 1 USD in MAD | Daily change |
|---|---|---|
| 2026-09-11 | 9.3773 | +0.12% |
| 2026-09-10 | 9.3664 | -0.13% |
| 2026-09-09 | 9.3782 | -0.27% |
| 2026-09-08 | 9.4039 | +0.38% |
| 2026-09-07 | 9.3685 | -0.01% |
| 2026-09-06 | 9.3692 | +0.01% |
| 2026-09-05 | 9.3683 | +0.15% |
| 2026-09-04 | 9.3546 | +0.25% |
| 2026-09-03 | 9.3309 | -0.11% |
| 2026-09-02 | 9.3409 | +0.43% |
| 2026-09-01 | 9.3007 | +0.27% |
| 2026-08-31 | 9.2756 | -0.10% |
| 2026-08-30 | 9.2846 | -0.03% |
| 2026-08-29 | 9.2873 | +0.35% |
| 2026-08-28 | 9.2545 | — |
USD to MAD conversion table
1 USD9.6171 MAD
5 USD48.0855 MAD
10 USD96.171 MAD
25 USD240.4275 MAD
50 USD480.8551 MAD
100 USD961.7101 MAD
500 USD4,808.5507 MAD
1,000 USD9,617.1014 MAD
5,000 USD48,085.507 MAD
10,000 USD96,171.014 MAD
Get the USD/MAD rate in your app
One GET request returns the latest USD → MAD 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/MAD"fetch('https://rate-api.com/api/v1/pair/USD/MAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MAD');
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']} MAD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MAD"
},
"rate": 9.6171,
"timestamp": 1790429306,
"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
MAD to USDMoroccan Dirham → US Dollar0.10398Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.