Convert VND to RUB
Vietnamese Dong → Russian Ruble
1 VND = 0.00327219 RUB(1 RUB = 305.60602 VND)
Currency converter
1 VND =
0.0032722 RUB
VND to RUB: last 30 days
Over the last 30 days, 1 VND traded between 0.0032251 and 0.0033426 RUB, averaging 0.0032761 RUB. The VND/RUB rate is down 0.26% since 2026-08-28.
- 30-day high
- 0.0033426
- 2026-09-03
- 30-day low
- 0.0032251
- 2026-09-22
- 30-day average
- 0.0032761
- Days with data: 30
- 30-day change
- -0.26%
- since 2026-08-28
0.0033426
0.00322512026-08-28 → 2026-09-26
| Date | 1 VND in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 0.0032722 | 0.00% |
| 2026-09-25 | 0.0032722 | +0.33% |
| 2026-09-24 | 0.0032615 | +0.43% |
| 2026-09-23 | 0.0032477 | +0.70% |
| 2026-09-22 | 0.0032251 | -0.29% |
| 2026-09-21 | 0.0032345 | +0.08% |
| 2026-09-20 | 0.0032319 | -0.43% |
| 2026-09-19 | 0.0032458 | -0.14% |
| 2026-09-18 | 0.0032504 | +0.31% |
| 2026-09-17 | 0.0032404 | +0.05% |
| 2026-09-16 | 0.0032387 | -0.25% |
| 2026-09-15 | 0.0032467 | -0.34% |
| 2026-09-14 | 0.0032577 | +0.20% |
| 2026-09-13 | 0.0032511 | -0.24% |
| 2026-09-12 | 0.0032588 | +0.58% |
| Date | 1 VND in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 0.0032401 | -1.16% |
| 2026-09-10 | 0.0032782 | -0.82% |
| 2026-09-09 | 0.0033052 | -0.35% |
| 2026-09-08 | 0.0033166 | -0.23% |
| 2026-09-07 | 0.0033241 | +0.15% |
| 2026-09-06 | 0.0033193 | +0.82% |
| 2026-09-05 | 0.0032922 | -0.90% |
| 2026-09-04 | 0.0033221 | -0.61% |
| 2026-09-03 | 0.0033426 | +0.46% |
| 2026-09-02 | 0.0033273 | +0.61% |
| 2026-09-01 | 0.0033072 | +0.36% |
| 2026-08-31 | 0.0032954 | -0.09% |
| 2026-08-30 | 0.0032984 | -0.05% |
| 2026-08-29 | 0.0033 | +0.59% |
| 2026-08-28 | 0.0032806 | — |
VND to RUB conversion table
1 VND0.0032722 RUB
5 VND0.016361 RUB
10 VND0.032722 RUB
25 VND0.081805 RUB
50 VND0.16361 RUB
100 VND0.32722 RUB
500 VND1.6361 RUB
1,000 VND3.2722 RUB
5,000 VND16.3609 RUB
10,000 VND32.7219 RUB
Get the VND/RUB rate in your app
One GET request returns the latest VND → 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/VND/RUB?precision=6"fetch('https://rate-api.com/api/v1/pair/VND/RUB?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 VND = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/VND/RUB?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 VND = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/VND/RUB?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 VND = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "VND",
"to": "RUB"
},
"rate": 0.003272,
"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 VNDRussian Ruble → Vietnamese Dong305.606Convert VND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.