Convert RUB to PHP
Russian Ruble → Philippine Peso
1 RUB = 0.734926 PHP(1 PHP = 1.360682 RUB)
Currency converter
1 RUB =
0.73493 PHP
RUB to PHP: last 30 days
Over the last 30 days, 1 RUB traded between 0.71606 and 0.7469 PHP, averaging 0.73453 PHP. The RUB/PHP rate is up 0.90% since 2026-08-28.
- 30-day high
- 0.7469
- 2026-09-20
- 30-day low
- 0.71606
- 2026-09-03
- 30-day average
- 0.73453
- Days with data: 30
- 30-day change
- +0.90%
- since 2026-08-28
0.7469
0.716062026-08-28 → 2026-09-26
| Date | 1 RUB in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 0.73493 | 0.00% |
| 2026-09-25 | 0.73493 | -0.64% |
| 2026-09-24 | 0.73963 | -0.32% |
| 2026-09-23 | 0.74196 | -0.51% |
| 2026-09-22 | 0.74577 | -0.04% |
| 2026-09-21 | 0.74609 | -0.11% |
| 2026-09-20 | 0.7469 | +0.37% |
| 2026-09-19 | 0.74414 | +0.12% |
| 2026-09-18 | 0.74323 | -0.19% |
| 2026-09-17 | 0.74461 | -0.05% |
| 2026-09-16 | 0.74502 | +0.26% |
| 2026-09-15 | 0.74312 | -0.08% |
| 2026-09-14 | 0.7437 | +0.09% |
| 2026-09-13 | 0.74307 | -0.11% |
| 2026-09-12 | 0.74389 | -0.27% |
| Date | 1 RUB in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 0.74594 | +1.32% |
| 2026-09-10 | 0.73623 | +1.14% |
| 2026-09-09 | 0.72793 | +0.43% |
| 2026-09-08 | 0.72484 | +0.22% |
| 2026-09-07 | 0.72324 | -0.08% |
| 2026-09-06 | 0.72379 | -0.85% |
| 2026-09-05 | 0.72999 | +0.97% |
| 2026-09-04 | 0.72295 | +0.96% |
| 2026-09-03 | 0.71606 | -0.60% |
| 2026-09-02 | 0.72036 | -0.40% |
| 2026-09-01 | 0.72323 | -0.35% |
| 2026-08-31 | 0.7258 | +0.29% |
| 2026-08-30 | 0.72372 | +0.19% |
| 2026-08-29 | 0.72238 | -0.82% |
| 2026-08-28 | 0.72837 | — |
RUB to PHP conversion table
1 RUB0.73493 PHP
5 RUB3.6746 PHP
10 RUB7.3493 PHP
25 RUB18.3731 PHP
50 RUB36.7463 PHP
100 RUB73.4926 PHP
500 RUB367.4629 PHP
1,000 RUB734.9258 PHP
5,000 RUB3,674.629 PHP
10,000 RUB7,349.258 PHP
Get the RUB/PHP rate in your app
One GET request returns the latest RUB → PHP 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/PHP"fetch('https://rate-api.com/api/v1/pair/RUB/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/PHP');
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']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "PHP"
},
"rate": 0.7349,
"timestamp": 1790429234,
"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
PHP to RUBPhilippine Peso → Russian Ruble1.3607Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.