Convert PEN to RUB
Peruvian Sol → Russian Ruble
1 PEN = 24.969222 RUB(1 RUB = 0.0400493 PEN)
Currency converter
1 PEN =
24.9692 RUB
PEN to RUB: last 30 days
Over the last 30 days, 1 PEN traded between 24.8552 and 25.9752 RUB, averaging 25.332 RUB. The PEN/RUB rate is down 2.11% since 2026-08-28.
- 30-day high
- 25.9752
- 2026-09-03
- 30-day low
- 24.8552
- 2026-09-22
- 30-day average
- 25.332
- Days with data: 30
- 30-day change
- -2.11%
- since 2026-08-28
25.9752
24.85522026-08-28 → 2026-09-26
| Date | 1 PEN in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 24.9692 | 0.00% |
| 2026-09-25 | 24.9692 | -0.33% |
| 2026-09-24 | 25.0507 | -0.17% |
| 2026-09-23 | 25.0925 | +0.96% |
| 2026-09-22 | 24.8552 | -0.32% |
| 2026-09-21 | 24.9354 | +0.08% |
| 2026-09-20 | 24.9156 | -0.38% |
| 2026-09-19 | 25.0096 | -0.09% |
| 2026-09-18 | 25.0329 | +0.36% |
| 2026-09-17 | 24.9424 | -0.62% |
| 2026-09-16 | 25.0975 | -0.21% |
| 2026-09-15 | 25.1499 | +0.00% |
| 2026-09-14 | 25.1495 | +0.10% |
| 2026-09-13 | 25.1252 | +0.12% |
| 2026-09-12 | 25.0956 | +0.28% |
| Date | 1 PEN in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 25.0251 | -1.37% |
| 2026-09-10 | 25.3739 | -0.91% |
| 2026-09-09 | 25.6059 | -0.35% |
| 2026-09-08 | 25.6958 | -0.46% |
| 2026-09-07 | 25.8151 | +0.04% |
| 2026-09-06 | 25.8059 | +0.81% |
| 2026-09-05 | 25.5979 | -0.93% |
| 2026-09-04 | 25.8384 | -0.53% |
| 2026-09-03 | 25.9752 | +0.67% |
| 2026-09-02 | 25.8012 | +0.54% |
| 2026-09-01 | 25.6634 | +0.68% |
| 2026-08-31 | 25.4907 | -0.68% |
| 2026-08-30 | 25.6649 | -0.18% |
| 2026-08-29 | 25.7109 | +0.80% |
| 2026-08-28 | 25.5064 | — |
PEN to RUB conversion table
1 PEN24.9692 RUB
5 PEN124.8461 RUB
10 PEN249.6922 RUB
25 PEN624.2305 RUB
50 PEN1,248.4611 RUB
100 PEN2,496.9222 RUB
500 PEN12,484.611 RUB
1,000 PEN24,969.222 RUB
5,000 PEN124,846.11 RUB
10,000 PEN249,692.22 RUB
Get the PEN/RUB rate in your app
One GET request returns the latest PEN → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/PEN/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PEN = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PEN/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PEN = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PEN/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "PEN",
"to": "RUB"
},
"rate": 24.9692,
"timestamp": 1790432064,
"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
RUB to PENRussian Ruble → Peruvian Sol0.040049Convert PEN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.