Convert COP to JPY
Colombian Peso → Japanese Yen
1 COP = 0.0476555 JPY(1 JPY = 20.983931 COP)
Currency converter
1 COP =
0.047656 JPY
COP to JPY: last 30 days
Over the last 30 days, 1 COP traded between 0.047656 and 0.05058 JPY, averaging 0.049487 JPY. The COP/JPY rate is down 5.78% since 2026-08-28.
- 30-day high
- 0.05058
- 2026-08-28
- 30-day low
- 0.047656
- 2026-09-25
- 30-day average
- 0.049487
- Days with data: 30
- 30-day change
- -5.78%
- since 2026-08-28
0.05058
0.0476562026-08-28 → 2026-09-26
| Date | 1 COP in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 0.047656 | 0.00% |
| 2026-09-25 | 0.047656 | -0.11% |
| 2026-09-24 | 0.04771 | -1.38% |
| 2026-09-23 | 0.048376 | -1.50% |
| 2026-09-22 | 0.049114 | -0.78% |
| 2026-09-21 | 0.0495 | -0.37% |
| 2026-09-20 | 0.049686 | +0.14% |
| 2026-09-19 | 0.049616 | -0.42% |
| 2026-09-18 | 0.049824 | +0.35% |
| 2026-09-17 | 0.049649 | -0.07% |
| 2026-09-16 | 0.049686 | -0.38% |
| 2026-09-15 | 0.049875 | -0.22% |
| 2026-09-14 | 0.049986 | -0.17% |
| 2026-09-13 | 0.050071 | +0.15% |
| 2026-09-12 | 0.049998 | +0.71% |
| Date | 1 COP in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 0.049647 | -0.02% |
| 2026-09-10 | 0.049656 | +0.88% |
| 2026-09-09 | 0.049225 | -0.15% |
| 2026-09-08 | 0.049298 | -0.23% |
| 2026-09-07 | 0.049411 | -0.97% |
| 2026-09-06 | 0.049896 | +0.06% |
| 2026-09-05 | 0.049865 | +0.41% |
| 2026-09-04 | 0.04966 | +0.63% |
| 2026-09-03 | 0.049347 | -2.11% |
| 2026-09-02 | 0.050408 | +1.43% |
| 2026-09-01 | 0.049698 | -0.32% |
| 2026-08-31 | 0.049859 | +0.01% |
| 2026-08-30 | 0.049853 | +0.08% |
| 2026-08-29 | 0.049814 | -1.52% |
| 2026-08-28 | 0.05058 | — |
COP to JPY conversion table
1 COP0.047656 JPY
5 COP0.23828 JPY
10 COP0.47656 JPY
25 COP1.1914 JPY
50 COP2.3828 JPY
100 COP4.7656 JPY
500 COP23.8278 JPY
1,000 COP47.6555 JPY
5,000 COP238.2776 JPY
10,000 COP476.5551 JPY
Get the COP/JPY rate in your app
One GET request returns the latest COP → JPY 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/COP/JPY"fetch('https://rate-api.com/api/v1/pair/COP/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 COP = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/COP/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 COP = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/COP/JPY');
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['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "COP",
"to": "JPY"
},
"rate": 0.0477,
"timestamp": 1790432036,
"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
JPY to COPJapanese Yen → Colombian Peso20.9839Convert COP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.