Convert PEN to JPY
Peruvian Sol → Japanese Yen
1 PEN = 46.285854 JPY(1 JPY = 0.0216049 PEN)
Currency converter
1 PEN =
46.2859 JPY
PEN to JPY: last 30 days
Over the last 30 days, 1 PEN traded between 45.716 and 47.652 JPY, averaging 46.5874 JPY. The PEN/JPY rate is down 2.87% since 2026-08-28.
- 30-day high
- 47.652
- 2026-08-28
- 30-day low
- 45.716
- 2026-09-09
- 30-day average
- 46.5874
- Days with data: 30
- 30-day change
- -2.87%
- since 2026-08-28
47.652
45.7162026-08-28 → 2026-09-26
| Date | 1 PEN in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 46.2859 | 0.00% |
| 2026-09-25 | 46.2859 | -1.32% |
| 2026-09-24 | 46.9047 | -0.22% |
| 2026-09-23 | 47.0068 | +0.78% |
| 2026-09-22 | 46.6429 | +0.10% |
| 2026-09-21 | 46.5941 | -0.41% |
| 2026-09-20 | 46.7851 | -0.01% |
| 2026-09-19 | 46.7881 | +0.03% |
| 2026-09-18 | 46.7748 | +1.46% |
| 2026-09-17 | 46.1038 | -0.24% |
| 2026-09-16 | 46.2169 | +0.20% |
| 2026-09-15 | 46.1268 | +0.32% |
| 2026-09-14 | 45.9798 | +0.13% |
| 2026-09-13 | 45.9194 | +0.01% |
| 2026-09-12 | 45.9161 | +0.01% |
| Date | 1 PEN in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 45.913 | -0.25% |
| 2026-09-10 | 46.0277 | +0.68% |
| 2026-09-09 | 45.716 | -0.57% |
| 2026-09-08 | 45.9763 | -0.32% |
| 2026-09-07 | 46.1241 | -0.99% |
| 2026-09-06 | 46.5831 | -0.04% |
| 2026-09-05 | 46.6035 | +0.03% |
| 2026-09-04 | 46.588 | +0.36% |
| 2026-09-03 | 46.4206 | -2.12% |
| 2026-09-02 | 47.4274 | -0.40% |
| 2026-09-01 | 47.6167 | +0.54% |
| 2026-08-31 | 47.3607 | -0.59% |
| 2026-08-30 | 47.6425 | +0.01% |
| 2026-08-29 | 47.639 | -0.03% |
| 2026-08-28 | 47.652 | — |
PEN to JPY conversion table
1 PEN46.2859 JPY
5 PEN231.4293 JPY
10 PEN462.8585 JPY
25 PEN1,157.1463 JPY
50 PEN2,314.2927 JPY
100 PEN4,628.5854 JPY
500 PEN23,142.927 JPY
1,000 PEN46,285.854 JPY
5,000 PEN231,429.27 JPY
10,000 PEN462,858.54 JPY
Get the PEN/JPY rate in your app
One GET request returns the latest PEN → JPY 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/PEN/JPY"fetch('https://rate-api.com/api/v1/pair/PEN/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PEN = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PEN/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PEN = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PEN/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PEN = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "PEN",
"to": "JPY"
},
"rate": 46.2859,
"timestamp": 1790432078,
"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
JPY to PENJapanese Yen → Peruvian Sol0.021605Convert PEN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.