Convert RUB to PLN
Russian Ruble → Polish Złoty
1 RUB = 0.0450978 PLN(1 PLN = 22.174024 RUB)
Currency converter
1 RUB =
0.045098 PLN
RUB to PLN: last 30 days
Over the last 30 days, 1 RUB traded between 0.042669 and 0.045498 PLN, averaging 0.044102 PLN. The RUB/PLN rate is up 3.49% since 2026-08-28.
- 30-day high
- 0.045498
- 2026-09-23
- 30-day low
- 0.042669
- 2026-09-03
- 30-day average
- 0.044102
- Days with data: 30
- 30-day change
- +3.49%
- since 2026-08-28
0.045498
0.0426692026-08-28 → 2026-09-26
| Date | 1 RUB in PLN | Daily change |
|---|---|---|
| 2026-09-26 | 0.045098 | 0.00% |
| 2026-09-25 | 0.045098 | -0.76% |
| 2026-09-24 | 0.045442 | -0.12% |
| 2026-09-23 | 0.045498 | +0.47% |
| 2026-09-22 | 0.045286 | +0.61% |
| 2026-09-21 | 0.045013 | -0.60% |
| 2026-09-20 | 0.045283 | +0.37% |
| 2026-09-19 | 0.045115 | +0.12% |
| 2026-09-18 | 0.045061 | -0.01% |
| 2026-09-17 | 0.045065 | +0.70% |
| 2026-09-16 | 0.044753 | +0.56% |
| 2026-09-15 | 0.044505 | +0.09% |
| 2026-09-14 | 0.044465 | +0.45% |
| 2026-09-13 | 0.044267 | -0.11% |
| 2026-09-12 | 0.044316 | -0.27% |
| Date | 1 RUB in PLN | Daily change |
|---|---|---|
| 2026-09-11 | 0.044438 | +1.51% |
| 2026-09-10 | 0.043775 | +1.47% |
| 2026-09-09 | 0.04314 | +0.07% |
| 2026-09-08 | 0.043111 | +0.68% |
| 2026-09-07 | 0.04282 | -0.17% |
| 2026-09-06 | 0.042891 | -0.85% |
| 2026-09-05 | 0.043259 | +0.97% |
| 2026-09-04 | 0.042842 | +0.40% |
| 2026-09-03 | 0.042669 | -0.86% |
| 2026-09-02 | 0.043038 | -0.59% |
| 2026-09-01 | 0.043294 | -0.28% |
| 2026-08-31 | 0.043414 | +0.26% |
| 2026-08-30 | 0.0433 | +0.19% |
| 2026-08-29 | 0.043219 | -0.82% |
| 2026-08-28 | 0.043577 | — |
RUB to PLN conversion table
1 RUB0.045098 PLN
5 RUB0.22549 PLN
10 RUB0.45098 PLN
25 RUB1.1274 PLN
50 RUB2.2549 PLN
100 RUB4.5098 PLN
500 RUB22.5489 PLN
1,000 RUB45.0978 PLN
5,000 RUB225.4891 PLN
10,000 RUB450.9781 PLN
Get the RUB/PLN rate in your app
One GET request returns the latest RUB → PLN 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/PLN"fetch('https://rate-api.com/api/v1/pair/RUB/PLN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} PLN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/PLN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} PLN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/PLN');
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']} PLN\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "PLN"
},
"rate": 0.0451,
"timestamp": 1790429308,
"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
PLN to RUBPolish Złoty → Russian Ruble22.174Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.