Convert JPY to MKD
Japanese Yen → Macedonian Denar
1 JPY = 0.342683 MKD(1 MKD = 2.918145 JPY)
Currency converter
1 JPY =
0.34268 MKD
JPY to MKD: last 30 days
Over the last 30 days, 1 JPY traded between 0.33061 and 0.34507 MKD, averaging 0.33967 MKD. The JPY/MKD rate is up 3.64% since 2026-08-28.
- 30-day high
- 0.34507
- 2026-09-09
- 30-day low
- 0.33061
- 2026-08-30
- 30-day average
- 0.33967
- Days with data: 30
- 30-day change
- +3.64%
- since 2026-08-28
0.34507
0.330612026-08-28 → 2026-09-26
| Date | 1 JPY in MKD | Daily change |
|---|---|---|
| 2026-09-26 | 0.34268 | 0.00% |
| 2026-09-25 | 0.34268 | +0.91% |
| 2026-09-24 | 0.33958 | -0.17% |
| 2026-09-23 | 0.34014 | -0.27% |
| 2026-09-22 | 0.34106 | +0.16% |
| 2026-09-21 | 0.34051 | +0.19% |
| 2026-09-20 | 0.33985 | +0.02% |
| 2026-09-19 | 0.33979 | +0.10% |
| 2026-09-18 | 0.33944 | -1.52% |
| 2026-09-17 | 0.34467 | +0.20% |
| 2026-09-16 | 0.34396 | +0.03% |
| 2026-09-15 | 0.34386 | +0.16% |
| 2026-09-14 | 0.34333 | -0.20% |
| 2026-09-13 | 0.34401 | -0.11% |
| 2026-09-12 | 0.34438 | +0.15% |
| Date | 1 JPY in MKD | Daily change |
|---|---|---|
| 2026-09-11 | 0.34385 | +0.22% |
| 2026-09-10 | 0.34308 | -0.58% |
| 2026-09-09 | 0.34507 | +0.63% |
| 2026-09-08 | 0.34293 | +0.21% |
| 2026-09-07 | 0.3422 | +1.02% |
| 2026-09-06 | 0.33873 | +0.01% |
| 2026-09-05 | 0.33868 | +0.02% |
| 2026-09-04 | 0.33863 | -0.47% |
| 2026-09-03 | 0.34023 | +2.24% |
| 2026-09-02 | 0.33277 | +0.56% |
| 2026-09-01 | 0.33092 | -0.07% |
| 2026-08-31 | 0.33114 | +0.16% |
| 2026-08-30 | 0.33061 | -0.03% |
| 2026-08-29 | 0.33069 | +0.02% |
| 2026-08-28 | 0.33064 | — |
JPY to MKD conversion table
1 JPY0.34268 MKD
5 JPY1.7134 MKD
10 JPY3.4268 MKD
25 JPY8.5671 MKD
50 JPY17.1342 MKD
100 JPY34.2683 MKD
500 JPY171.3417 MKD
1,000 JPY342.6834 MKD
5,000 JPY1,713.4171 MKD
10,000 JPY3,426.8342 MKD
Get the JPY/MKD rate in your app
One GET request returns the latest JPY → 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/JPY/MKD"fetch('https://rate-api.com/api/v1/pair/JPY/MKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} MKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/MKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} MKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/MKD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} MKD\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "MKD"
},
"rate": 0.3427,
"timestamp": 1790447427,
"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 JPYMacedonian Denar → Japanese Yen2.9181Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.