Convert INR to COP
Indian Rupee → Colombian Peso
1 INR = 34.512129 COP(1 COP = 0.0289753 INR)
Currency converter
1 INR =
34.5121 COP
INR to COP: last 30 days
Over the last 30 days, 1 INR traded between 32.1939 and 34.698 COP, averaging 33.213 COP. The INR/COP rate is up 4.28% since 2026-08-28.
- 30-day high
- 34.698
- 2026-09-24
- 30-day low
- 32.1939
- 2026-09-13
- 30-day average
- 33.213
- Days with data: 30
- 30-day change
- +4.28%
- since 2026-08-28
34.698
32.19392026-08-28 → 2026-09-26
| Date | 1 INR in COP | Daily change |
|---|---|---|
| 2026-09-26 | 34.5121 | 0.00% |
| 2026-09-25 | 34.5121 | -0.54% |
| 2026-09-24 | 34.698 | +1.77% |
| 2026-09-23 | 34.0961 | +1.84% |
| 2026-09-22 | 33.4796 | +0.97% |
| 2026-09-21 | 33.1578 | +0.04% |
| 2026-09-20 | 33.1429 | -0.14% |
| 2026-09-19 | 33.1895 | +0.42% |
| 2026-09-18 | 33.051 | +1.12% |
| 2026-09-17 | 32.6853 | +0.51% |
| 2026-09-16 | 32.52 | +0.41% |
| 2026-09-15 | 32.3861 | +0.10% |
| 2026-09-14 | 32.3553 | +0.50% |
| 2026-09-13 | 32.1939 | -0.15% |
| 2026-09-12 | 32.2408 | -0.70% |
| Date | 1 INR in COP | Daily change |
|---|---|---|
| 2026-09-11 | 32.4686 | -0.20% |
| 2026-09-10 | 32.5329 | -0.62% |
| 2026-09-09 | 32.7372 | -0.81% |
| 2026-09-08 | 33.0061 | -0.42% |
| 2026-09-07 | 33.1455 | +0.01% |
| 2026-09-06 | 33.1414 | -0.06% |
| 2026-09-05 | 33.1621 | -0.41% |
| 2026-09-04 | 33.2989 | -0.48% |
| 2026-09-03 | 33.4585 | +0.36% |
| 2026-09-02 | 33.3383 | -1.77% |
| 2026-09-01 | 33.9406 | +0.83% |
| 2026-08-31 | 33.6621 | +0.25% |
| 2026-08-30 | 33.578 | -0.08% |
| 2026-08-29 | 33.6045 | +1.54% |
| 2026-08-28 | 33.0953 | — |
INR to COP conversion table
1 INR34.5121 COP
5 INR172.5606 COP
10 INR345.1213 COP
25 INR862.8032 COP
50 INR1,725.6064 COP
100 INR3,451.2129 COP
500 INR17,256.064 COP
1,000 INR34,512.129 COP
5,000 INR172,560.64 COP
10,000 INR345,121.29 COP
Get the INR/COP rate in your app
One GET request returns the latest INR → 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/INR/COP"fetch('https://rate-api.com/api/v1/pair/INR/COP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} COP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/COP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} COP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/COP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} COP\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "COP"
},
"rate": 34.5121,
"timestamp": 1790429355,
"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 INRColombian Peso → Indian Rupee0.028975Convert INR to other currencies
Convert other currencies to COP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.