Convert RUB to ARS
Russian Ruble → Argentine Peso
1 RUB = 17.8778 ARS(1 ARS = 0.0559353 RUB)
Currency converter
1 RUB =
17.8778 ARS
RUB to ARS: last 30 days
Over the last 30 days, 1 RUB traded between 17.3058 and 18.0754 ARS, averaging 17.7375 ARS. The RUB/ARS rate is up 1.05% since 2026-08-28.
- 30-day high
- 18.0754
- 2026-09-22
- 30-day low
- 17.3058
- 2026-09-03
- 30-day average
- 17.7375
- Days with data: 30
- 30-day change
- +1.05%
- since 2026-08-28
18.0754
17.30582026-08-28 → 2026-09-26
| Date | 1 RUB in ARS | Daily change |
|---|---|---|
| 2026-09-26 | 17.8778 | 0.00% |
| 2026-09-25 | 17.8778 | +0.06% |
| 2026-09-24 | 17.8673 | -0.53% |
| 2026-09-23 | 17.963 | -0.62% |
| 2026-09-22 | 18.0754 | +0.79% |
| 2026-09-21 | 17.9337 | -0.44% |
| 2026-09-20 | 18.0134 | +0.23% |
| 2026-09-19 | 17.973 | +0.58% |
| 2026-09-18 | 17.8699 | -0.50% |
| 2026-09-17 | 17.96 | +0.35% |
| 2026-09-16 | 17.8966 | +0.30% |
| 2026-09-15 | 17.8434 | -0.31% |
| 2026-09-14 | 17.898 | -0.01% |
| 2026-09-13 | 17.8992 | -0.11% |
| 2026-09-12 | 17.9195 | -0.54% |
| Date | 1 RUB in ARS | Daily change |
|---|---|---|
| 2026-09-11 | 18.0165 | +1.16% |
| 2026-09-10 | 17.81 | +1.16% |
| 2026-09-09 | 17.6066 | +0.44% |
| 2026-09-08 | 17.5296 | +0.61% |
| 2026-09-07 | 17.4241 | -0.02% |
| 2026-09-06 | 17.4277 | -0.81% |
| 2026-09-05 | 17.57 | +0.94% |
| 2026-09-04 | 17.4068 | +0.58% |
| 2026-09-03 | 17.3058 | -0.67% |
| 2026-09-02 | 17.4228 | -0.31% |
| 2026-09-01 | 17.4778 | -0.36% |
| 2026-08-31 | 17.5416 | +0.14% |
| 2026-08-30 | 17.5166 | +0.05% |
| 2026-08-29 | 17.5073 | -1.05% |
| 2026-08-28 | 17.6924 | — |
RUB to ARS conversion table
1 RUB17.8778 ARS
5 RUB89.389 ARS
10 RUB178.778 ARS
25 RUB446.945 ARS
50 RUB893.89 ARS
100 RUB1,787.78 ARS
500 RUB8,938.9001 ARS
1,000 RUB17,877.8 ARS
5,000 RUB89,389.001 ARS
10,000 RUB178,778 ARS
Get the RUB/ARS rate in your app
One GET request returns the latest RUB → ARS 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/ARS"fetch('https://rate-api.com/api/v1/pair/RUB/ARS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} ARS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/ARS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} ARS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/ARS');
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']} ARS\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "ARS"
},
"rate": 17.8778,
"timestamp": 1790429289,
"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
ARS to RUBArgentine Peso → Russian Ruble0.055935Convert RUB to other currencies
Convert other currencies to ARS
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.