Convert RUB to VES
Russian Ruble → Venezuelan Bolívar
1 RUB = 10.03741 VES(1 VES = 0.0996273 RUB)
Currency converter
1 RUB =
10.0374 VES
RUB to VES: last 30 days
Over the last 30 days, 1 RUB traded between 9.1752 and 10.1547 VES, averaging 9.6698 VES. The RUB/VES rate is up 8.55% since 2026-08-28.
- 30-day high
- 10.1547
- 2026-09-22
- 30-day low
- 9.1752
- 2026-08-29
- 30-day average
- 9.6698
- Days with data: 30
- 30-day change
- +8.55%
- since 2026-08-28
10.1547
9.17522026-08-28 → 2026-09-26
| Date | 1 RUB in VES | Daily change |
|---|---|---|
| 2026-09-26 | 10.0374 | 0.00% |
| 2026-09-25 | 10.0374 | -0.14% |
| 2026-09-24 | 10.0516 | -0.52% |
| 2026-09-23 | 10.104 | -0.50% |
| 2026-09-22 | 10.1547 | +0.79% |
| 2026-09-21 | 10.0749 | -0.03% |
| 2026-09-20 | 10.078 | +0.35% |
| 2026-09-19 | 10.0433 | +0.38% |
| 2026-09-18 | 10.0054 | -0.37% |
| 2026-09-17 | 10.0427 | +0.87% |
| 2026-09-16 | 9.9557 | +0.46% |
| 2026-09-15 | 9.9101 | +1.32% |
| 2026-09-14 | 9.781 | -0.74% |
| 2026-09-13 | 9.8543 | -0.69% |
| 2026-09-12 | 9.9227 | +1.48% |
| Date | 1 RUB in VES | Daily change |
|---|---|---|
| 2026-09-11 | 9.7775 | +1.53% |
| 2026-09-10 | 9.6299 | +1.37% |
| 2026-09-09 | 9.4999 | +1.23% |
| 2026-09-08 | 9.3849 | +0.49% |
| 2026-09-07 | 9.3394 | +0.29% |
| 2026-09-06 | 9.3128 | -0.87% |
| 2026-09-05 | 9.3945 | +1.36% |
| 2026-09-04 | 9.268 | +0.99% |
| 2026-09-03 | 9.1772 | -0.38% |
| 2026-09-02 | 9.2125 | -0.11% |
| 2026-09-01 | 9.2229 | +0.14% |
| 2026-08-31 | 9.2102 | +0.23% |
| 2026-08-30 | 9.1888 | +0.15% |
| 2026-08-29 | 9.1752 | -0.77% |
| 2026-08-28 | 9.2469 | — |
RUB to VES conversion table
1 RUB10.0374 VES
5 RUB50.1871 VES
10 RUB100.3741 VES
25 RUB250.9353 VES
50 RUB501.8705 VES
100 RUB1,003.741 VES
500 RUB5,018.7051 VES
1,000 RUB10,037.41 VES
5,000 RUB50,187.051 VES
10,000 RUB100,374.1 VES
Get the RUB/VES rate in your app
One GET request returns the latest RUB → VES 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/VES"fetch('https://rate-api.com/api/v1/pair/RUB/VES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} VES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/VES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} VES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/VES');
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']} VES\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "VES"
},
"rate": 10.0374,
"timestamp": 1790429285,
"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
VES to RUBVenezuelan Bolívar → Russian Ruble0.099627Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.