Convert RUB to VND
Russian Ruble → Vietnamese Dong
1 RUB = 307.71862 VND(1 VND = 0.00324972 RUB)
Currency converter
1 RUB =
307.7186 VND
RUB to VND: last 30 days
Over the last 30 days, 1 RUB traded between 299.1651 and 310.0703 VND, averaging 305.4363 VND. The RUB/VND rate is up 1.55% since 2026-08-29.
- 30-day high
- 310.0703
- 2026-09-22
- 30-day low
- 299.1651
- 2026-09-03
- 30-day average
- 305.4363
- Days with data: 30
- 30-day change
- +1.55%
- since 2026-08-29
310.0703
299.16512026-08-29 → 2026-09-27
| Date | 1 RUB in VND | Daily change |
|---|---|---|
| 2026-09-27 | 307.7186 | 0.00% |
| 2026-09-26 | 307.7186 | +0.69% |
| 2026-09-25 | 305.606 | -0.33% |
| 2026-09-24 | 306.6034 | -0.43% |
| 2026-09-23 | 307.914 | -0.70% |
| 2026-09-22 | 310.0703 | +0.29% |
| 2026-09-21 | 309.1628 | -0.08% |
| 2026-09-20 | 309.412 | +0.43% |
| 2026-09-19 | 308.0873 | +0.14% |
| 2026-09-18 | 307.6582 | -0.31% |
| 2026-09-17 | 308.6022 | -0.05% |
| 2026-09-16 | 308.7703 | +0.25% |
| 2026-09-15 | 308.0096 | +0.34% |
| 2026-09-14 | 306.967 | -0.20% |
| 2026-09-13 | 307.5881 | +0.24% |
| Date | 1 RUB in VND | Daily change |
|---|---|---|
| 2026-09-12 | 306.857 | -0.58% |
| 2026-09-11 | 308.6344 | +1.18% |
| 2026-09-10 | 305.0445 | +0.82% |
| 2026-09-09 | 302.555 | +0.35% |
| 2026-09-08 | 301.5097 | +0.23% |
| 2026-09-07 | 300.8298 | -0.15% |
| 2026-09-06 | 301.2696 | -0.82% |
| 2026-09-05 | 303.7515 | +0.91% |
| 2026-09-04 | 301.0106 | +0.62% |
| 2026-09-03 | 299.1651 | -0.46% |
| 2026-09-02 | 300.5415 | -0.61% |
| 2026-09-01 | 302.3714 | -0.36% |
| 2026-08-31 | 303.4511 | +0.09% |
| 2026-08-30 | 303.1779 | +0.05% |
| 2026-08-29 | 303.0317 | — |
RUB to VND conversion table
1 RUB307.7186 VND
5 RUB1,538.5931 VND
10 RUB3,077.1862 VND
25 RUB7,692.9655 VND
50 RUB15,385.931 VND
100 RUB30,771.862 VND
500 RUB153,859.31 VND
1,000 RUB307,718.62 VND
5,000 RUB1,538,593.1 VND
10,000 RUB3,077,186.2 VND
Get the RUB/VND rate in your app
One GET request returns the latest RUB → VND 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/VND"fetch('https://rate-api.com/api/v1/pair/RUB/VND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} VND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/VND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} VND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/VND');
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']} VND\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "VND"
},
"rate": 307.7186,
"timestamp": 1790470775,
"date": "2026-09-27"
}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
VND to RUBVietnamese Dong → Russian Ruble0.0032497Convert RUB to other currencies
Convert other currencies to VND
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.