Colombian Peso (COP) $
Colombian Peso exchange rates against major world currencies, checked hourly and updated as sources publish.
1 COP = 0.000302402 USD
1 COP in other currencies
COP to USDUS Dollar0.0003024COP to EUREuro0.00026519COP to GBPBritish Pound0.00022819COP to JPYJapanese Yen0.047656COP to CNYChinese Yuan0.0020301COP to CADCanadian Dollar0.00042768COP to AUDAustralian Dollar0.00043015COP to CHFSwiss Franc0.00025048COP to INRIndian Rupee0.028975COP to RUBRussian Ruble0.025708
Convert to COP
USD to COPUS Dollar3,306.86EUR to COPEuro3,770.8125GBP to COPBritish Pound4,382.3725JPY to COPJapanese Yen20.9839CNY to COPChinese Yuan492.5883CAD to COPCanadian Dollar2,338.1983AUD to COPAustralian Dollar2,324.7919CHF to COPSwiss Franc3,992.3901INR to COPIndian Rupee34.5121RUB to COPRussian Ruble38.8983
Get COP rates in your app
One GET request returns every rate against COP as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=COP"fetch('https://rate-api.com/api/v1/latest?base=COP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 COP = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=COP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 COP = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=COP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 COP = {$data['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.