Convert THB to RUB
Thai Baht → Russian Ruble
1 THB = 2.54952 RUB(1 RUB = 0.392231 THB)
Currency converter
1 THB =
2.5495 RUB
THB to RUB: last 30 days
Over the last 30 days, 1 THB traded between 2.5209 and 2.6466 RUB, averaging 2.572 RUB. The THB/RUB rate is down 1.70% since 2026-08-28.
- 30-day high
- 2.6466
- 2026-09-03
- 30-day low
- 2.5209
- 2026-09-20
- 30-day average
- 2.572
- Days with data: 30
- 30-day change
- -1.70%
- since 2026-08-28
2.6466
2.52092026-08-28 → 2026-09-26
| Date | 1 THB in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 2.5495 | 0.00% |
| 2026-09-25 | 2.5495 | +0.61% |
| 2026-09-24 | 2.534 | +0.07% |
| 2026-09-23 | 2.5322 | +0.19% |
| 2026-09-22 | 2.5274 | -0.20% |
| 2026-09-21 | 2.5324 | +0.46% |
| 2026-09-20 | 2.5209 | -0.37% |
| 2026-09-19 | 2.5303 | -0.12% |
| 2026-09-18 | 2.5333 | +0.17% |
| 2026-09-17 | 2.529 | -0.13% |
| 2026-09-16 | 2.5323 | -0.24% |
| 2026-09-15 | 2.5383 | -0.16% |
| 2026-09-14 | 2.5424 | -0.26% |
| 2026-09-13 | 2.5491 | +0.11% |
| 2026-09-12 | 2.5462 | +0.27% |
| Date | 1 THB in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 2.5392 | -1.43% |
| 2026-09-10 | 2.576 | -1.35% |
| 2026-09-09 | 2.6113 | -0.33% |
| 2026-09-08 | 2.62 | -0.49% |
| 2026-09-07 | 2.633 | +0.14% |
| 2026-09-06 | 2.6294 | +0.86% |
| 2026-09-05 | 2.607 | -0.96% |
| 2026-09-04 | 2.6324 | -0.54% |
| 2026-09-03 | 2.6466 | +1.28% |
| 2026-09-02 | 2.6132 | +0.71% |
| 2026-09-01 | 2.5949 | +0.10% |
| 2026-08-31 | 2.5922 | -0.69% |
| 2026-08-30 | 2.6102 | -0.19% |
| 2026-08-29 | 2.6151 | +0.83% |
| 2026-08-28 | 2.5936 | — |
THB to RUB conversion table
1 THB2.5495 RUB
5 THB12.7476 RUB
10 THB25.4952 RUB
25 THB63.738 RUB
50 THB127.476 RUB
100 THB254.952 RUB
500 THB1,274.76 RUB
1,000 THB2,549.52 RUB
5,000 THB12,747.6 RUB
10,000 THB25,495.2 RUB
Get the THB/RUB rate in your app
One GET request returns the latest THB → 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/THB/RUB"fetch('https://rate-api.com/api/v1/pair/THB/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 THB = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/THB/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 THB = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/THB/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 THB = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "THB",
"to": "RUB"
},
"rate": 2.5495,
"timestamp": 1790432039,
"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 THBRussian Ruble → Thai Baht0.39223Convert THB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.