Convert USD to MYR
US Dollar → Malaysian Ringgit
1 USD = 4.074016 MYR(1 MYR = 0.245458 USD)
Currency converter
1 USD =
4.074 MYR
USD to MYR: last 30 days
Over the last 30 days, 1 USD traded between 4.026 and 4.099 MYR, averaging 4.0625 MYR. The USD/MYR rate is up 1.19% since 2026-08-28.
- 30-day high
- 4.099
- 2026-09-17
- 30-day low
- 4.026
- 2026-08-28
- 30-day average
- 4.0625
- Days with data: 30
- 30-day change
- +1.19%
- since 2026-08-28
4.099
4.0262026-08-28 → 2026-09-26
| Date | 1 USD in MYR | Daily change |
|---|---|---|
| 2026-09-26 | 4.074 | 0.00% |
| 2026-09-25 | 4.074 | -0.32% |
| 2026-09-24 | 4.087 | +0.17% |
| 2026-09-23 | 4.08 | +0.15% |
| 2026-09-22 | 4.074 | -0.09% |
| 2026-09-21 | 4.0775 | -0.07% |
| 2026-09-20 | 4.0805 | 0.00% |
| 2026-09-19 | 4.0805 | 0.00% |
| 2026-09-18 | 4.0805 | -0.45% |
| 2026-09-17 | 4.099 | +0.29% |
| 2026-09-16 | 4.087 | 0.00% |
| 2026-09-15 | 4.087 | +0.27% |
| 2026-09-14 | 4.076 | +0.14% |
| 2026-09-13 | 4.0705 | 0.00% |
| 2026-09-12 | 4.0705 | 0.00% |
| Date | 1 USD in MYR | Daily change |
|---|---|---|
| 2026-09-11 | 4.0705 | +0.12% |
| 2026-09-10 | 4.0655 | -0.11% |
| 2026-09-09 | 4.07 | +0.21% |
| 2026-09-08 | 4.0615 | +0.38% |
| 2026-09-07 | 4.046 | +0.04% |
| 2026-09-06 | 4.0445 | 0.00% |
| 2026-09-05 | 4.0445 | 0.00% |
| 2026-09-04 | 4.0445 | +0.07% |
| 2026-09-03 | 4.0415 | -0.10% |
| 2026-09-02 | 4.0455 | +0.15% |
| 2026-09-01 | 4.0395 | +0.34% |
| 2026-08-31 | 4.026 | 0.00% |
| 2026-08-30 | 4.026 | 0.00% |
| 2026-08-29 | 4.026 | 0.00% |
| 2026-08-28 | 4.026 | — |
USD to MYR conversion table
1 USD4.074 MYR
5 USD20.3701 MYR
10 USD40.7402 MYR
25 USD101.8504 MYR
50 USD203.7008 MYR
100 USD407.4016 MYR
500 USD2,037.0078 MYR
1,000 USD4,074.0156 MYR
5,000 USD20,370.078 MYR
10,000 USD40,740.156 MYR
Get the USD/MYR rate in your app
One GET request returns the latest USD → MYR 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/MYR"fetch('https://rate-api.com/api/v1/pair/USD/MYR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MYR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MYR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MYR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MYR');
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']} MYR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MYR"
},
"rate": 4.074,
"timestamp": 1790429399,
"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
MYR to USDMalaysian Ringgit → US Dollar0.24546Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.