Convert RUB to COP
Russian Ruble → Colombian Peso
1 RUB = 38.898256 COP(1 COP = 0.0257081 RUB)
Currency converter
1 RUB =
38.8983 COP
RUB to COP: last 30 days
Over the last 30 days, 1 RUB traded between 36.1604 and 39.2456 COP, averaging 37.1772 COP. The RUB/COP rate is up 5.31% since 2026-08-28.
- 30-day high
- 39.2456
- 2026-09-24
- 30-day low
- 36.1604
- 2026-09-07
- 30-day average
- 37.1772
- Days with data: 30
- 30-day change
- +5.31%
- since 2026-08-28
39.2456
36.16042026-08-28 → 2026-09-26
| Date | 1 RUB in COP | Daily change |
|---|---|---|
| 2026-09-26 | 38.8983 | 0.00% |
| 2026-09-25 | 38.8983 | -0.89% |
| 2026-09-24 | 39.2456 | +1.35% |
| 2026-09-23 | 38.7246 | +1.35% |
| 2026-09-22 | 38.209 | +1.22% |
| 2026-09-21 | 37.7494 | -0.11% |
| 2026-09-20 | 37.792 | +0.23% |
| 2026-09-19 | 37.7053 | +0.54% |
| 2026-09-18 | 37.5023 | +0.73% |
| 2026-09-17 | 37.2297 | +0.45% |
| 2026-09-16 | 37.0629 | +0.79% |
| 2026-09-15 | 36.7734 | +0.54% |
| 2026-09-14 | 36.5755 | +0.20% |
| 2026-09-13 | 36.5008 | -0.26% |
| 2026-09-12 | 36.5945 | -0.97% |
| Date | 1 RUB in COP | Daily change |
|---|---|---|
| 2026-09-11 | 36.9543 | +1.16% |
| 2026-09-10 | 36.5306 | +0.72% |
| 2026-09-09 | 36.2693 | -0.07% |
| 2026-09-08 | 36.2949 | +0.37% |
| 2026-09-07 | 36.1604 | -0.05% |
| 2026-09-06 | 36.1781 | -0.91% |
| 2026-09-05 | 36.5109 | +0.56% |
| 2026-09-04 | 36.3082 | +0.26% |
| 2026-09-03 | 36.2153 | -0.69% |
| 2026-09-02 | 36.4658 | -2.33% |
| 2026-09-01 | 37.3341 | +0.19% |
| 2026-08-31 | 37.2642 | +0.08% |
| 2026-08-30 | 37.236 | +0.11% |
| 2026-08-29 | 37.1959 | +0.70% |
| 2026-08-28 | 36.9361 | — |
RUB to COP conversion table
1 RUB38.8983 COP
5 RUB194.4913 COP
10 RUB388.9826 COP
25 RUB972.4564 COP
50 RUB1,944.9128 COP
100 RUB3,889.8256 COP
500 RUB19,449.128 COP
1,000 RUB38,898.256 COP
5,000 RUB194,491.28 COP
10,000 RUB388,982.56 COP
Get the RUB/COP rate in your app
One GET request returns the latest RUB → COP 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/COP"fetch('https://rate-api.com/api/v1/pair/RUB/COP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} COP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/COP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} COP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/COP');
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']} COP\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "COP"
},
"rate": 38.8983,
"timestamp": 1790429260,
"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
COP to RUBColombian Peso → Russian Ruble0.025708Convert RUB to other currencies
Convert other currencies to COP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.