Convert USD to MKD
US Dollar → Macedonian Denar
1 USD = 54.003518 MKD(1 MKD = 0.0185173 USD)
Currency converter
1 USD =
54.0035 MKD
USD to MKD: last 30 days
Over the last 30 days, 1 USD traded between 52.792 and 54.0035 MKD, averaging 53.2324 MKD. The USD/MKD rate is up 2.29% since 2026-08-28.
- 30-day high
- 54.0035
- 2026-09-25
- 30-day low
- 52.792
- 2026-08-30
- 30-day average
- 53.2324
- Days with data: 30
- 30-day change
- +2.29%
- since 2026-08-28
54.0035
52.7922026-08-28 → 2026-09-26
| Date | 1 USD in MKD | Daily change |
|---|---|---|
| 2026-09-26 | 54.0035 | 0.00% |
| 2026-09-25 | 54.0035 | +0.11% |
| 2026-09-24 | 53.9433 | +0.43% |
| 2026-09-23 | 53.7147 | +0.20% |
| 2026-09-22 | 53.6073 | +0.10% |
| 2026-09-21 | 53.5522 | -0.20% |
| 2026-09-20 | 53.659 | +0.02% |
| 2026-09-19 | 53.6487 | +0.10% |
| 2026-09-18 | 53.5934 | -0.13% |
| 2026-09-17 | 53.6613 | +0.62% |
| 2026-09-16 | 53.3314 | +0.06% |
| 2026-09-15 | 53.2986 | +0.45% |
| 2026-09-14 | 53.0613 | +0.13% |
| 2026-09-13 | 52.9915 | -0.11% |
| 2026-09-12 | 53.0483 | +0.15% |
| Date | 1 USD in MKD | Daily change |
|---|---|---|
| 2026-09-11 | 52.9665 | +0.13% |
| 2026-09-10 | 52.8965 | +0.01% |
| 2026-09-09 | 52.8893 | -0.05% |
| 2026-09-08 | 52.9139 | -0.08% |
| 2026-09-07 | 52.9554 | +0.05% |
| 2026-09-06 | 52.9268 | +0.01% |
| 2026-09-05 | 52.9189 | +0.02% |
| 2026-09-04 | 52.9102 | -0.32% |
| 2026-09-03 | 53.0787 | -0.06% |
| 2026-09-02 | 53.1098 | +0.21% |
| 2026-09-01 | 53.0008 | +0.20% |
| 2026-08-31 | 52.8936 | +0.19% |
| 2026-08-30 | 52.792 | -0.03% |
| 2026-08-29 | 52.8053 | +0.02% |
| 2026-08-28 | 52.7959 | — |
USD to MKD conversion table
1 USD54.0035 MKD
5 USD270.0176 MKD
10 USD540.0352 MKD
25 USD1,350.0879 MKD
50 USD2,700.1759 MKD
100 USD5,400.3518 MKD
500 USD27,001.759 MKD
1,000 USD54,003.518 MKD
5,000 USD270,017.59 MKD
10,000 USD540,035.18 MKD
Get the USD/MKD rate in your app
One GET request returns the latest USD → MKD 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/MKD"fetch('https://rate-api.com/api/v1/pair/USD/MKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MKD');
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']} MKD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MKD"
},
"rate": 54.0035,
"timestamp": 1790429290,
"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
MKD to USDMacedonian Denar → US Dollar0.018517Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.