Convert RUB to PEN
Russian Ruble → Peruvian Sol
1 RUB = 0.0400493 PEN(1 PEN = 24.969222 RUB)
Currency converter
1 RUB =
0.040049 PEN
RUB to PEN: last 30 days
Over the last 30 days, 1 RUB traded between 0.038498 and 0.040233 PEN, averaging 0.039483 PEN. The RUB/PEN rate is up 2.15% since 2026-08-28.
- 30-day high
- 0.040233
- 2026-09-22
- 30-day low
- 0.038498
- 2026-09-03
- 30-day average
- 0.039483
- Days with data: 30
- 30-day change
- +2.15%
- since 2026-08-28
0.040233
0.0384982026-08-28 → 2026-09-26
| Date | 1 RUB in PEN | Daily change |
|---|---|---|
| 2026-09-26 | 0.040049 | 0.00% |
| 2026-09-25 | 0.040049 | +0.33% |
| 2026-09-24 | 0.039919 | +0.17% |
| 2026-09-23 | 0.039852 | -0.95% |
| 2026-09-22 | 0.040233 | +0.32% |
| 2026-09-21 | 0.040104 | -0.08% |
| 2026-09-20 | 0.040135 | +0.38% |
| 2026-09-19 | 0.039985 | +0.09% |
| 2026-09-18 | 0.039947 | -0.36% |
| 2026-09-17 | 0.040092 | +0.62% |
| 2026-09-16 | 0.039845 | +0.21% |
| 2026-09-15 | 0.039762 | -0.00% |
| 2026-09-14 | 0.039762 | -0.10% |
| 2026-09-13 | 0.039801 | -0.12% |
| 2026-09-12 | 0.039848 | -0.28% |
| Date | 1 RUB in PEN | Daily change |
|---|---|---|
| 2026-09-11 | 0.03996 | +1.39% |
| 2026-09-10 | 0.039411 | +0.91% |
| 2026-09-09 | 0.039054 | +0.35% |
| 2026-09-08 | 0.038917 | +0.46% |
| 2026-09-07 | 0.038737 | -0.04% |
| 2026-09-06 | 0.038751 | -0.81% |
| 2026-09-05 | 0.039066 | +0.94% |
| 2026-09-04 | 0.038702 | +0.53% |
| 2026-09-03 | 0.038498 | -0.67% |
| 2026-09-02 | 0.038758 | -0.53% |
| 2026-09-01 | 0.038966 | -0.67% |
| 2026-08-31 | 0.03923 | +0.68% |
| 2026-08-30 | 0.038964 | +0.18% |
| 2026-08-29 | 0.038894 | -0.80% |
| 2026-08-28 | 0.039206 | — |
RUB to PEN conversion table
1 RUB0.040049 PEN
5 RUB0.20025 PEN
10 RUB0.40049 PEN
25 RUB1.0012 PEN
50 RUB2.0025 PEN
100 RUB4.0049 PEN
500 RUB20.0247 PEN
1,000 RUB40.0493 PEN
5,000 RUB200.2465 PEN
10,000 RUB400.4931 PEN
Get the RUB/PEN rate in your app
One GET request returns the latest RUB → 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/RUB/PEN"fetch('https://rate-api.com/api/v1/pair/RUB/PEN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} PEN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/PEN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} PEN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/PEN');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} PEN\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "PEN"
},
"rate": 0.04,
"timestamp": 1790429293,
"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 RUBPeruvian Sol → Russian Ruble24.9692Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.