Convert TRY to RUB
Turkish Lira → Russian Ruble
1 TRY = 1.737361 RUB(1 RUB = 0.575586 TRY)
Currency converter
1 TRY =
1.7374 RUB
TRY to RUB: last 30 days
Over the last 30 days, 1 TRY traded between 1.7161 and 1.8068 RUB, averaging 1.755 RUB. The TRY/RUB rate is down 1.93% since 2026-08-28.
- 30-day high
- 1.8068
- 2026-09-03
- 30-day low
- 1.7161
- 2026-09-22
- 30-day average
- 1.755
- Days with data: 30
- 30-day change
- -1.93%
- since 2026-08-28
1.8068
1.71612026-08-28 → 2026-09-26
| Date | 1 TRY in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 1.7374 | 0.00% |
| 2026-09-25 | 1.7374 | +0.04% |
| 2026-09-24 | 1.7366 | +0.61% |
| 2026-09-23 | 1.7261 | +0.58% |
| 2026-09-22 | 1.7161 | -0.50% |
| 2026-09-21 | 1.7247 | +0.07% |
| 2026-09-20 | 1.7236 | -0.37% |
| 2026-09-19 | 1.73 | -0.12% |
| 2026-09-18 | 1.7321 | +0.09% |
| 2026-09-17 | 1.7304 | +0.00% |
| 2026-09-16 | 1.7304 | -0.41% |
| 2026-09-15 | 1.7375 | -0.06% |
| 2026-09-14 | 1.7386 | +0.24% |
| 2026-09-13 | 1.7344 | +0.11% |
| 2026-09-12 | 1.7325 | +0.27% |
| Date | 1 TRY in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 1.7277 | -1.42% |
| 2026-09-10 | 1.7527 | -1.03% |
| 2026-09-09 | 1.7709 | -0.49% |
| 2026-09-08 | 1.7796 | -0.49% |
| 2026-09-07 | 1.7883 | +0.08% |
| 2026-09-06 | 1.7868 | +0.86% |
| 2026-09-05 | 1.7716 | -0.96% |
| 2026-09-04 | 1.7889 | -0.99% |
| 2026-09-03 | 1.8068 | +0.50% |
| 2026-09-02 | 1.7979 | +0.55% |
| 2026-09-01 | 1.7881 | +0.38% |
| 2026-08-31 | 1.7813 | -0.09% |
| 2026-08-30 | 1.783 | -0.19% |
| 2026-08-29 | 1.7863 | +0.83% |
| 2026-08-28 | 1.7716 | — |
TRY to RUB conversion table
1 TRY1.7374 RUB
5 TRY8.6868 RUB
10 TRY17.3736 RUB
25 TRY43.434 RUB
50 TRY86.868 RUB
100 TRY173.7361 RUB
500 TRY868.6805 RUB
1,000 TRY1,737.361 RUB
5,000 TRY8,686.8048 RUB
10,000 TRY17,373.61 RUB
Get the TRY/RUB rate in your app
One GET request returns the latest TRY → 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/TRY/RUB"fetch('https://rate-api.com/api/v1/pair/TRY/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TRY = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TRY/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TRY = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TRY/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TRY = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "TRY",
"to": "RUB"
},
"rate": 1.7374,
"timestamp": 1790432031,
"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 TRYRussian Ruble → Turkish Lira0.57559Convert TRY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.