Convert JPY to COP
Japanese Yen → Colombian Peso
1 JPY = 20.983931 COP(1 COP = 0.0476555 JPY)
Currency converter
1 JPY =
20.9839 COP
JPY to COP: last 30 days
Over the last 30 days, 1 JPY traded between 19.7706 and 20.9839 COP, averaging 20.2116 COP. The JPY/COP rate is up 6.14% since 2026-08-28.
- 30-day high
- 20.9839
- 2026-09-25
- 30-day low
- 19.7706
- 2026-08-28
- 30-day average
- 20.2116
- Days with data: 30
- 30-day change
- +6.14%
- since 2026-08-28
20.9839
19.77062026-08-28 → 2026-09-26
| Date | 1 JPY in COP | Daily change |
|---|---|---|
| 2026-09-26 | 20.9839 | 0.00% |
| 2026-09-25 | 20.9839 | +0.11% |
| 2026-09-24 | 20.9601 | +1.40% |
| 2026-09-23 | 20.6715 | +1.53% |
| 2026-09-22 | 20.3608 | +0.79% |
| 2026-09-21 | 20.2021 | +0.38% |
| 2026-09-20 | 20.1263 | -0.14% |
| 2026-09-19 | 20.1546 | +0.42% |
| 2026-09-18 | 20.0705 | -0.35% |
| 2026-09-17 | 20.1415 | +0.07% |
| 2026-09-16 | 20.1265 | +0.38% |
| 2026-09-15 | 20.0501 | +0.22% |
| 2026-09-14 | 20.0057 | +0.17% |
| 2026-09-13 | 19.9718 | -0.15% |
| 2026-09-12 | 20.0008 | -0.70% |
| Date | 1 JPY in COP | Daily change |
|---|---|---|
| 2026-09-11 | 20.1421 | +0.02% |
| 2026-09-10 | 20.1384 | -0.87% |
| 2026-09-09 | 20.3147 | +0.15% |
| 2026-09-08 | 20.285 | +0.23% |
| 2026-09-07 | 20.2386 | +0.98% |
| 2026-09-06 | 20.0418 | -0.06% |
| 2026-09-05 | 20.0543 | -0.41% |
| 2026-09-04 | 20.137 | -0.63% |
| 2026-09-03 | 20.2647 | +2.15% |
| 2026-09-02 | 19.838 | -1.41% |
| 2026-09-01 | 20.1215 | +0.32% |
| 2026-08-31 | 20.0565 | -0.01% |
| 2026-08-30 | 20.0589 | -0.08% |
| 2026-08-29 | 20.0747 | +1.54% |
| 2026-08-28 | 19.7706 | — |
JPY to COP conversion table
1 JPY20.9839 COP
5 JPY104.9197 COP
10 JPY209.8393 COP
25 JPY524.5983 COP
50 JPY1,049.1966 COP
100 JPY2,098.3931 COP
500 JPY10,491.966 COP
1,000 JPY20,983.931 COP
5,000 JPY104,919.66 COP
10,000 JPY209,839.31 COP
Get the JPY/COP rate in your app
One GET request returns the latest JPY → 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/JPY/COP"fetch('https://rate-api.com/api/v1/pair/JPY/COP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} COP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/COP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} COP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/COP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} COP\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "COP"
},
"rate": 20.9839,
"timestamp": 1790429268,
"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 JPYColombian Peso → Japanese Yen0.047656Convert JPY to other currencies
Convert other currencies to COP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.