Convert JPY to PEN
Japanese Yen → Peruvian Sol
1 JPY = 0.0216049 PEN(1 PEN = 46.285854 JPY)
Currency converter
1 JPY =
0.021605 PEN
JPY to PEN: last 30 days
Over the last 30 days, 1 JPY traded between 0.020985 and 0.021874 PEN, averaging 0.021468 PEN. The JPY/PEN rate is up 2.95% since 2026-08-28.
- 30-day high
- 0.021874
- 2026-09-09
- 30-day low
- 0.020985
- 2026-08-28
- 30-day average
- 0.021468
- Days with data: 30
- 30-day change
- +2.95%
- since 2026-08-28
0.021874
0.0209852026-08-28 → 2026-09-26
| Date | 1 JPY in PEN | Daily change |
|---|---|---|
| 2026-09-26 | 0.021605 | 0.00% |
| 2026-09-25 | 0.021605 | +1.34% |
| 2026-09-24 | 0.02132 | +0.22% |
| 2026-09-23 | 0.021274 | -0.77% |
| 2026-09-22 | 0.021439 | -0.10% |
| 2026-09-21 | 0.021462 | +0.41% |
| 2026-09-20 | 0.021374 | +0.01% |
| 2026-09-19 | 0.021373 | -0.03% |
| 2026-09-18 | 0.021379 | -1.43% |
| 2026-09-17 | 0.02169 | +0.25% |
| 2026-09-16 | 0.021637 | -0.20% |
| 2026-09-15 | 0.021679 | -0.32% |
| 2026-09-14 | 0.021749 | -0.13% |
| 2026-09-13 | 0.021777 | -0.01% |
| 2026-09-12 | 0.021779 | -0.01% |
| Date | 1 JPY in PEN | Daily change |
|---|---|---|
| 2026-09-11 | 0.02178 | +0.25% |
| 2026-09-10 | 0.021726 | -0.68% |
| 2026-09-09 | 0.021874 | +0.57% |
| 2026-09-08 | 0.02175 | +0.32% |
| 2026-09-07 | 0.021681 | +1.00% |
| 2026-09-06 | 0.021467 | +0.04% |
| 2026-09-05 | 0.021458 | -0.03% |
| 2026-09-04 | 0.021465 | -0.36% |
| 2026-09-03 | 0.021542 | +2.17% |
| 2026-09-02 | 0.021085 | +0.40% |
| 2026-09-01 | 0.021001 | -0.54% |
| 2026-08-31 | 0.021115 | +0.59% |
| 2026-08-30 | 0.02099 | -0.01% |
| 2026-08-29 | 0.020991 | +0.03% |
| 2026-08-28 | 0.020985 | — |
JPY to PEN conversion table
1 JPY0.021605 PEN
5 JPY0.10802 PEN
10 JPY0.21605 PEN
25 JPY0.54012 PEN
50 JPY1.0802 PEN
100 JPY2.1605 PEN
500 JPY10.8024 PEN
1,000 JPY21.6049 PEN
5,000 JPY108.0244 PEN
10,000 JPY216.0487 PEN
Get the JPY/PEN rate in your app
One GET request returns the latest JPY → PEN 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/PEN"fetch('https://rate-api.com/api/v1/pair/JPY/PEN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} PEN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/PEN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} PEN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/PEN');
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']} PEN\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "PEN"
},
"rate": 0.0216,
"timestamp": 1790429299,
"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
PEN to JPYPeruvian Sol → Japanese Yen46.2859Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.