Convert RUB to TWD
Russian Ruble → New Taiwan Dollar
1 RUB = 0.373852 TWD(1 TWD = 2.674852 RUB)
Currency converter
1 RUB =
0.37385 TWD
RUB to TWD: last 30 days
Over the last 30 days, 1 RUB traded between 0.36321 and 0.3786 TWD, averaging 0.37199 TWD. The RUB/TWD rate is up 1.03% since 2026-08-28.
- 30-day high
- 0.3786
- 2026-09-17
- 30-day low
- 0.36321
- 2026-09-03
- 30-day average
- 0.37199
- Days with data: 30
- 30-day change
- +1.03%
- since 2026-08-28
0.3786
0.363212026-08-28 → 2026-09-26
| Date | 1 RUB in TWD | Daily change |
|---|---|---|
| 2026-09-26 | 0.37385 | 0.00% |
| 2026-09-25 | 0.37385 | -0.34% |
| 2026-09-24 | 0.37512 | -0.35% |
| 2026-09-23 | 0.37643 | -0.51% |
| 2026-09-22 | 0.37835 | +0.17% |
| 2026-09-21 | 0.37772 | -0.21% |
| 2026-09-20 | 0.37851 | +0.46% |
| 2026-09-19 | 0.37677 | +0.16% |
| 2026-09-18 | 0.37618 | -0.64% |
| 2026-09-17 | 0.3786 | +0.38% |
| 2026-09-16 | 0.37717 | +0.28% |
| 2026-09-15 | 0.37612 | +0.25% |
| 2026-09-14 | 0.37519 | -0.08% |
| 2026-09-13 | 0.37548 | +0.09% |
| 2026-09-12 | 0.37515 | -0.47% |
| Date | 1 RUB in TWD | Daily change |
|---|---|---|
| 2026-09-11 | 0.37691 | +1.63% |
| 2026-09-10 | 0.37087 | +1.14% |
| 2026-09-09 | 0.36669 | +0.46% |
| 2026-09-08 | 0.365 | -0.01% |
| 2026-09-07 | 0.36505 | -0.19% |
| 2026-09-06 | 0.36574 | -0.94% |
| 2026-09-05 | 0.3692 | +0.87% |
| 2026-09-04 | 0.36602 | +0.77% |
| 2026-09-03 | 0.36321 | -0.83% |
| 2026-09-02 | 0.36624 | -0.10% |
| 2026-09-01 | 0.3666 | -0.54% |
| 2026-08-31 | 0.3686 | +0.19% |
| 2026-08-30 | 0.36791 | +0.18% |
| 2026-08-29 | 0.36725 | -0.75% |
| 2026-08-28 | 0.37004 | — |
RUB to TWD conversion table
1 RUB0.37385 TWD
5 RUB1.8693 TWD
10 RUB3.7385 TWD
25 RUB9.3463 TWD
50 RUB18.6926 TWD
100 RUB37.3852 TWD
500 RUB186.9262 TWD
1,000 RUB373.8525 TWD
5,000 RUB1,869.2624 TWD
10,000 RUB3,738.5247 TWD
Get the RUB/TWD rate in your app
One GET request returns the latest RUB → TWD 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/TWD"fetch('https://rate-api.com/api/v1/pair/RUB/TWD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} TWD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/TWD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} TWD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/TWD');
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']} TWD\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "TWD"
},
"rate": 0.3739,
"timestamp": 1790429294,
"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
TWD to RUBNew Taiwan Dollar → Russian Ruble2.6749Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.