Convert JPY to XCD
Japanese Yen → East Caribbean Dollar
1 JPY = 0.0171331 XCD(1 XCD = 58.366707 JPY)
Currency converter
1 JPY =
0.017133 XCD
JPY to XCD: last 30 days
Over the last 30 days, 1 JPY traded between 0.016904 and 0.017663 XCD, averaging 0.017256 XCD. The JPY/XCD rate is up 1.05% since 2026-08-28.
- 30-day high
- 0.017663
- 2026-09-09
- 30-day low
- 0.016904
- 2026-09-01
- 30-day average
- 0.017256
- Days with data: 30
- 30-day change
- +1.05%
- since 2026-08-28
0.017663
0.0169042026-08-28 → 2026-09-26
| Date | 1 JPY in XCD | Daily change |
|---|---|---|
| 2026-09-26 | 0.017133 | 0.00% |
| 2026-09-25 | 0.017133 | +0.80% |
| 2026-09-24 | 0.016997 | -0.59% |
| 2026-09-23 | 0.017098 | -0.74% |
| 2026-09-22 | 0.017225 | +0.07% |
| 2026-09-21 | 0.017213 | +0.63% |
| 2026-09-20 | 0.017105 | -0.07% |
| 2026-09-19 | 0.017116 | -0.00% |
| 2026-09-18 | 0.017117 | -1.48% |
| 2026-09-17 | 0.017373 | -0.48% |
| 2026-09-16 | 0.017456 | -0.05% |
| 2026-09-15 | 0.017466 | -0.29% |
| 2026-09-14 | 0.017517 | -0.07% |
| 2026-09-13 | 0.017529 | -0.09% |
| 2026-09-12 | 0.017544 | -0.16% |
| Date | 1 JPY in XCD | Daily change |
|---|---|---|
| 2026-09-11 | 0.017572 | +0.10% |
| 2026-09-10 | 0.017554 | -0.62% |
| 2026-09-09 | 0.017663 | +0.67% |
| 2026-09-08 | 0.017545 | +0.26% |
| 2026-09-07 | 0.017499 | +1.24% |
| 2026-09-06 | 0.017284 | -0.07% |
| 2026-09-05 | 0.017296 | -0.14% |
| 2026-09-04 | 0.01732 | -0.19% |
| 2026-09-03 | 0.017352 | +2.29% |
| 2026-09-02 | 0.016963 | +0.35% |
| 2026-09-01 | 0.016904 | -0.08% |
| 2026-08-31 | 0.016917 | +0.01% |
| 2026-08-30 | 0.016915 | -0.06% |
| 2026-08-29 | 0.016924 | -0.18% |
| 2026-08-28 | 0.016955 | — |
JPY to XCD conversion table
1 JPY0.017133 XCD
5 JPY0.085665 XCD
10 JPY0.17133 XCD
25 JPY0.42833 XCD
50 JPY0.85665 XCD
100 JPY1.7133 XCD
500 JPY8.5665 XCD
1,000 JPY17.1331 XCD
5,000 JPY85.6653 XCD
10,000 JPY171.3306 XCD
Get the JPY/XCD rate in your app
One GET request returns the latest JPY → XCD 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/XCD"fetch('https://rate-api.com/api/v1/pair/JPY/XCD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} XCD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/XCD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} XCD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/XCD');
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']} XCD\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "XCD"
},
"rate": 0.0171,
"timestamp": 1790439645,
"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
XCD to JPYEast Caribbean Dollar → Japanese Yen58.3667Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.