Convert PLN to RUB
Polish Złoty → Russian Ruble
1 PLN = 22.174024 RUB(1 RUB = 0.0450978 PLN)
Currency converter
1 PLN =
22.174 RUB
PLN to RUB: last 30 days
Over the last 30 days, 1 PLN traded between 21.9792 and 23.4361 RUB, averaging 22.6852 RUB. The PLN/RUB rate is down 3.37% since 2026-08-28.
- 30-day high
- 23.4361
- 2026-09-03
- 30-day low
- 21.9792
- 2026-09-23
- 30-day average
- 22.6852
- Days with data: 30
- 30-day change
- -3.37%
- since 2026-08-28
23.4361
21.97922026-08-28 → 2026-09-26
| Date | 1 PLN in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 22.174 | 0.00% |
| 2026-09-25 | 22.174 | +0.76% |
| 2026-09-24 | 22.0063 | +0.12% |
| 2026-09-23 | 21.9792 | -0.46% |
| 2026-09-22 | 22.0817 | -0.60% |
| 2026-09-21 | 22.2159 | +0.60% |
| 2026-09-20 | 22.0835 | -0.37% |
| 2026-09-19 | 22.1654 | -0.12% |
| 2026-09-18 | 22.1924 | +0.01% |
| 2026-09-17 | 22.1901 | -0.69% |
| 2026-09-16 | 22.3449 | -0.55% |
| 2026-09-15 | 22.4693 | -0.09% |
| 2026-09-14 | 22.4896 | -0.45% |
| 2026-09-13 | 22.5903 | +0.11% |
| 2026-09-12 | 22.5653 | +0.27% |
| Date | 1 PLN in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 22.5034 | -1.49% |
| 2026-09-10 | 22.844 | -1.45% |
| 2026-09-09 | 23.1802 | -0.07% |
| 2026-09-08 | 23.1958 | -0.68% |
| 2026-09-07 | 23.3537 | +0.17% |
| 2026-09-06 | 23.3149 | +0.86% |
| 2026-09-05 | 23.1167 | -0.96% |
| 2026-09-04 | 23.3417 | -0.40% |
| 2026-09-03 | 23.4361 | +0.87% |
| 2026-09-02 | 23.2351 | +0.59% |
| 2026-09-01 | 23.0979 | +0.28% |
| 2026-08-31 | 23.0342 | -0.26% |
| 2026-08-30 | 23.0949 | -0.19% |
| 2026-08-29 | 23.1379 | +0.83% |
| 2026-08-28 | 22.9477 | — |
PLN to RUB conversion table
1 PLN22.174 RUB
5 PLN110.8701 RUB
10 PLN221.7402 RUB
25 PLN554.3506 RUB
50 PLN1,108.7012 RUB
100 PLN2,217.4024 RUB
500 PLN11,087.012 RUB
1,000 PLN22,174.024 RUB
5,000 PLN110,870.12 RUB
10,000 PLN221,740.24 RUB
Get the PLN/RUB rate in your app
One GET request returns the latest PLN → 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/PLN/RUB"fetch('https://rate-api.com/api/v1/pair/PLN/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PLN = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PLN/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PLN = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PLN/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PLN = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "PLN",
"to": "RUB"
},
"rate": 22.174,
"timestamp": 1790432070,
"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 PLNRussian Ruble → Polish Złoty0.045098Convert PLN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.