Convert EUR to COP
Euro → Colombian Peso
1 EUR = 3,770.8125 COP(1 COP = 0.000265195 EUR)
Currency converter
1 EUR =
3,770.8125 COP
EUR to COP: last 30 days
Over the last 30 days, 1 EUR traded between 3,566.235 and 3,784.7677 COP, averaging 3,658.5138 COP. The EUR/COP rate is up 2.59% since 2026-08-28.
- 30-day high
- 3,784.7677
- 2026-09-24
- 30-day low
- 3,566.235
- 2026-09-13
- 30-day average
- 3,658.5138
- Days with data: 30
- 30-day change
- +2.59%
- since 2026-08-28
3,784.7677
3,566.2352026-08-28 → 2026-09-26
| Date | 1 EUR in COP | Daily change |
|---|---|---|
| 2026-09-26 | 3,770.8125 | 0.00% |
| 2026-09-25 | 3,770.8125 | -0.37% |
| 2026-09-24 | 3,784.7677 | +1.60% |
| 2026-09-23 | 3,724.9954 | +1.54% |
| 2026-09-22 | 3,668.5312 | +0.49% |
| 2026-09-21 | 3,650.5863 | +0.24% |
| 2026-09-20 | 3,641.6955 | -0.14% |
| 2026-09-19 | 3,646.8156 | +0.42% |
| 2026-09-18 | 3,631.5939 | +0.87% |
| 2026-09-17 | 3,600.2591 | +0.00% |
| 2026-09-16 | 3,600.2383 | +0.40% |
| 2026-09-15 | 3,586.0412 | +0.41% |
| 2026-09-14 | 3,571.4081 | +0.15% |
| 2026-09-13 | 3,566.235 | -0.15% |
| 2026-09-12 | 3,571.4293 | -0.70% |
| Date | 1 EUR in COP | Daily change |
|---|---|---|
| 2026-09-11 | 3,596.6618 | -0.28% |
| 2026-09-10 | 3,606.7062 | -0.59% |
| 2026-09-09 | 3,628.0149 | -0.20% |
| 2026-09-08 | 3,635.1472 | -0.13% |
| 2026-09-07 | 3,639.9064 | +0.01% |
| 2026-09-06 | 3,639.4546 | -0.06% |
| 2026-09-05 | 3,641.7231 | -0.41% |
| 2026-09-04 | 3,656.7463 | -0.42% |
| 2026-09-03 | 3,672.0614 | +0.17% |
| 2026-09-02 | 3,665.7432 | -1.86% |
| 2026-09-01 | 3,735.0706 | +0.54% |
| 2026-08-31 | 3,714.9051 | -0.38% |
| 2026-08-30 | 3,729.2421 | -0.08% |
| 2026-08-29 | 3,732.177 | +1.54% |
| 2026-08-28 | 3,675.6319 | — |
EUR to COP conversion table
1 EUR3,770.8125 COP
5 EUR18,854.062 COP
10 EUR37,708.125 COP
25 EUR94,270.311 COP
50 EUR188,540.62 COP
100 EUR377,081.25 COP
500 EUR1,885,406.2 COP
1,000 EUR3,770,812.5 COP
5,000 EUR18,854,062 COP
10,000 EUR37,708,125 COP
Get the EUR/COP rate in your app
One GET request returns the latest EUR → 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/EUR/COP"fetch('https://rate-api.com/api/v1/pair/EUR/COP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} COP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/COP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} COP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/COP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} COP\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "COP"
},
"rate": 3770.8125,
"timestamp": 1790429309,
"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 EURColombian Peso → Euro0.00026519Convert EUR to other currencies
Convert other currencies to COP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.