Convert RUB to JPY
Russian Ruble → Japanese Yen
1 RUB = 1.853716 JPY(1 JPY = 0.539457 RUB)
Currency converter
1 RUB =
1.8537 JPY
RUB to JPY: last 30 days
Over the last 30 days, 1 RUB traded between 1.7854 and 1.8777 JPY, averaging 1.8393 JPY. The RUB/JPY rate is down 0.78% since 2026-08-28.
- 30-day high
- 1.8777
- 2026-09-20
- 30-day low
- 1.7854
- 2026-09-09
- 30-day average
- 1.8393
- Days with data: 30
- 30-day change
- -0.78%
- since 2026-08-28
1.8777
1.78542026-08-28 → 2026-09-26
| Date | 1 RUB in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 1.8537 | 0.00% |
| 2026-09-25 | 1.8537 | -1.00% |
| 2026-09-24 | 1.8724 | -0.05% |
| 2026-09-23 | 1.8733 | -0.17% |
| 2026-09-22 | 1.8766 | +0.43% |
| 2026-09-21 | 1.8686 | -0.49% |
| 2026-09-20 | 1.8777 | +0.37% |
| 2026-09-19 | 1.8708 | +0.12% |
| 2026-09-18 | 1.8685 | +1.09% |
| 2026-09-17 | 1.8484 | +0.38% |
| 2026-09-16 | 1.8415 | +0.40% |
| 2026-09-15 | 1.8341 | +0.32% |
| 2026-09-14 | 1.8283 | +0.03% |
| 2026-09-13 | 1.8276 | -0.11% |
| 2026-09-12 | 1.8296 | -0.27% |
| Date | 1 RUB in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 1.8347 | +1.14% |
| 2026-09-10 | 1.814 | +1.60% |
| 2026-09-09 | 1.7854 | -0.22% |
| 2026-09-08 | 1.7893 | +0.14% |
| 2026-09-07 | 1.7867 | -1.02% |
| 2026-09-06 | 1.8051 | -0.85% |
| 2026-09-05 | 1.8206 | +0.97% |
| 2026-09-04 | 1.8031 | +0.89% |
| 2026-09-03 | 1.7871 | -2.78% |
| 2026-09-02 | 1.8382 | -0.93% |
| 2026-09-01 | 1.8554 | -0.14% |
| 2026-08-31 | 1.858 | +0.09% |
| 2026-08-30 | 1.8563 | +0.19% |
| 2026-08-29 | 1.8529 | -0.82% |
| 2026-08-28 | 1.8682 | — |
RUB to JPY conversion table
1 RUB1.8537 JPY
5 RUB9.2686 JPY
10 RUB18.5372 JPY
25 RUB46.3429 JPY
50 RUB92.6858 JPY
100 RUB185.3716 JPY
500 RUB926.8582 JPY
1,000 RUB1,853.7163 JPY
5,000 RUB9,268.5817 JPY
10,000 RUB18,537.163 JPY
Get the RUB/JPY rate in your app
One GET request returns the latest RUB → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/RUB/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "JPY"
},
"rate": 1.8537,
"timestamp": 1790429289,
"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
JPY to RUBJapanese Yen → Russian Ruble0.53946Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.