Convert JPY to JMD
Japanese Yen → Jamaican Dollar
1 JPY = 1.003773 JMD(1 JMD = 0.996241 JPY)
Currency converter
1 JPY =
1.0038 JMD
JPY to JMD: last 30 days
Over the last 30 days, 1 JPY traded between 0.98759 and 1.0333 JMD, averaging 1.0089 JMD. The JPY/JMD rate is up 1.38% since 2026-08-29.
- 30-day high
- 1.0333
- 2026-09-09
- 30-day low
- 0.98759
- 2026-09-01
- 30-day average
- 1.0089
- Days with data: 30
- 30-day change
- +1.38%
- since 2026-08-29
1.0333
0.987592026-08-29 → 2026-09-27
| Date | 1 JPY in JMD | Daily change |
|---|---|---|
| 2026-09-27 | 1.0038 | 0.00% |
| 2026-09-26 | 1.0038 | +0.29% |
| 2026-09-25 | 1.0008 | +0.68% |
| 2026-09-24 | 0.99408 | -0.44% |
| 2026-09-23 | 0.99842 | -0.45% |
| 2026-09-22 | 1.003 | +0.05% |
| 2026-09-21 | 1.0025 | +0.46% |
| 2026-09-20 | 0.99791 | -0.09% |
| 2026-09-19 | 0.99879 | -0.06% |
| 2026-09-18 | 0.99935 | -1.90% |
| 2026-09-17 | 1.0188 | +0.32% |
| 2026-09-16 | 1.0155 | -0.13% |
| 2026-09-15 | 1.0168 | -0.52% |
| 2026-09-14 | 1.0221 | -0.29% |
| 2026-09-13 | 1.0251 | +0.01% |
| Date | 1 JPY in JMD | Daily change |
|---|---|---|
| 2026-09-12 | 1.0251 | -0.24% |
| 2026-09-11 | 1.0275 | +0.42% |
| 2026-09-10 | 1.0231 | -0.99% |
| 2026-09-09 | 1.0333 | +0.49% |
| 2026-09-08 | 1.0283 | +0.37% |
| 2026-09-07 | 1.0245 | +1.24% |
| 2026-09-06 | 1.012 | +0.02% |
| 2026-09-05 | 1.0118 | -0.05% |
| 2026-09-04 | 1.0123 | -0.20% |
| 2026-09-03 | 1.0143 | +2.39% |
| 2026-09-02 | 0.99062 | +0.31% |
| 2026-09-01 | 0.98759 | -0.96% |
| 2026-08-31 | 0.99717 | +0.77% |
| 2026-08-30 | 0.98954 | -0.06% |
| 2026-08-29 | 0.9901 | — |
JPY to JMD conversion table
1 JPY1.0038 JMD
5 JPY5.0189 JMD
10 JPY10.0377 JMD
25 JPY25.0943 JMD
50 JPY50.1887 JMD
100 JPY100.3773 JMD
500 JPY501.8866 JMD
1,000 JPY1,003.7733 JMD
5,000 JPY5,018.8663 JMD
10,000 JPY10,037.733 JMD
Get the JPY/JMD rate in your app
One GET request returns the latest JPY → JMD 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/JMD"fetch('https://rate-api.com/api/v1/pair/JPY/JMD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} JMD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/JMD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} JMD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/JMD');
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']} JMD\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "JMD"
},
"rate": 1.0038,
"timestamp": 1790470776,
"date": "2026-09-27"
}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
JMD to JPYJamaican Dollar → Japanese Yen0.99624Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.