Convert TWD to RUB
New Taiwan Dollar → Russian Ruble
1 TWD = 2.674852 RUB(1 RUB = 0.373852 TWD)
Currency converter
1 TWD =
2.6749 RUB
TWD to RUB: last 30 days
Over the last 30 days, 1 TWD traded between 2.6413 and 2.7532 RUB, averaging 2.6887 RUB. The TWD/RUB rate is down 1.02% since 2026-08-28.
- 30-day high
- 2.7532
- 2026-09-03
- 30-day low
- 2.6413
- 2026-09-17
- 30-day average
- 2.6887
- Days with data: 30
- 30-day change
- -1.02%
- since 2026-08-28
2.7532
2.64132026-08-28 → 2026-09-26
| Date | 1 TWD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 2.6749 | 0.00% |
| 2026-09-25 | 2.6749 | +0.34% |
| 2026-09-24 | 2.6658 | +0.35% |
| 2026-09-23 | 2.6565 | +0.51% |
| 2026-09-22 | 2.643 | -0.17% |
| 2026-09-21 | 2.6475 | +0.21% |
| 2026-09-20 | 2.6419 | -0.46% |
| 2026-09-19 | 2.6542 | -0.16% |
| 2026-09-18 | 2.6583 | +0.64% |
| 2026-09-17 | 2.6413 | -0.38% |
| 2026-09-16 | 2.6513 | -0.28% |
| 2026-09-15 | 2.6587 | -0.25% |
| 2026-09-14 | 2.6653 | +0.08% |
| 2026-09-13 | 2.6633 | -0.09% |
| 2026-09-12 | 2.6656 | +0.47% |
| Date | 1 TWD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 2.6532 | -1.60% |
| 2026-09-10 | 2.6964 | -1.13% |
| 2026-09-09 | 2.7271 | -0.46% |
| 2026-09-08 | 2.7397 | +0.01% |
| 2026-09-07 | 2.7393 | +0.19% |
| 2026-09-06 | 2.7342 | +0.95% |
| 2026-09-05 | 2.7085 | -0.86% |
| 2026-09-04 | 2.7321 | -0.77% |
| 2026-09-03 | 2.7532 | +0.83% |
| 2026-09-02 | 2.7304 | +0.10% |
| 2026-09-01 | 2.7278 | +0.55% |
| 2026-08-31 | 2.7129 | -0.19% |
| 2026-08-30 | 2.718 | -0.18% |
| 2026-08-29 | 2.7229 | +0.76% |
| 2026-08-28 | 2.7024 | — |
TWD to RUB conversion table
1 TWD2.6749 RUB
5 TWD13.3743 RUB
10 TWD26.7485 RUB
25 TWD66.8713 RUB
50 TWD133.7426 RUB
100 TWD267.4852 RUB
500 TWD1,337.426 RUB
1,000 TWD2,674.8519 RUB
5,000 TWD13,374.26 RUB
10,000 TWD26,748.519 RUB
Get the TWD/RUB rate in your app
One GET request returns the latest TWD → 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/TWD/RUB"fetch('https://rate-api.com/api/v1/pair/TWD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TWD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TWD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TWD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TWD/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TWD = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "TWD",
"to": "RUB"
},
"rate": 2.6749,
"timestamp": 1790432060,
"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 TWDRussian Ruble → New Taiwan Dollar0.37385Convert TWD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.