Convert CLP to JPY
Chilean Peso → Japanese Yen
1 CLP = 0.163604 JPY(1 JPY = 6.112335 CLP)
Currency converter
1 CLP =
0.1636 JPY
CLP to JPY: last 30 days
Over the last 30 days, 1 CLP traded between 0.16225 and 0.17235 JPY, averaging 0.16615 JPY. The CLP/JPY rate is down 5.07% since 2026-08-28.
- 30-day high
- 0.17235
- 2026-08-28
- 30-day low
- 0.16225
- 2026-09-15
- 30-day average
- 0.16615
- Days with data: 30
- 30-day change
- -5.07%
- since 2026-08-28
0.17235
0.162252026-08-28 → 2026-09-26
| Date | 1 CLP in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 0.1636 | 0.00% |
| 2026-09-25 | 0.1636 | -0.79% |
| 2026-09-24 | 0.16491 | -1.11% |
| 2026-09-23 | 0.16676 | +0.56% |
| 2026-09-22 | 0.16582 | +1.23% |
| 2026-09-21 | 0.16381 | -0.45% |
| 2026-09-20 | 0.16456 | -0.01% |
| 2026-09-19 | 0.16458 | +0.11% |
| 2026-09-18 | 0.1644 | +1.01% |
| 2026-09-17 | 0.16275 | +0.17% |
| 2026-09-16 | 0.16247 | +0.14% |
| 2026-09-15 | 0.16225 | -1.37% |
| 2026-09-14 | 0.1645 | +0.64% |
| 2026-09-13 | 0.16345 | -0.01% |
| 2026-09-12 | 0.16346 | -0.15% |
| Date | 1 CLP in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 0.16371 | -1.56% |
| 2026-09-10 | 0.1663 | +0.36% |
| 2026-09-09 | 0.16571 | +0.33% |
| 2026-09-08 | 0.16515 | -0.51% |
| 2026-09-07 | 0.16599 | -0.72% |
| 2026-09-06 | 0.1672 | -0.00% |
| 2026-09-05 | 0.1672 | -0.20% |
| 2026-09-04 | 0.16754 | +0.71% |
| 2026-09-03 | 0.16636 | -2.42% |
| 2026-09-02 | 0.17049 | -0.51% |
| 2026-09-01 | 0.17136 | -0.06% |
| 2026-08-31 | 0.17146 | +0.01% |
| 2026-08-30 | 0.17144 | -0.00% |
| 2026-08-29 | 0.17144 | -0.52% |
| 2026-08-28 | 0.17235 | — |
CLP to JPY conversion table
1 CLP0.1636 JPY
5 CLP0.81802 JPY
10 CLP1.636 JPY
25 CLP4.0901 JPY
50 CLP8.1802 JPY
100 CLP16.3604 JPY
500 CLP81.8018 JPY
1,000 CLP163.6036 JPY
5,000 CLP818.0181 JPY
10,000 CLP1,636.0361 JPY
Get the CLP/JPY rate in your app
One GET request returns the latest CLP → 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/CLP/JPY"fetch('https://rate-api.com/api/v1/pair/CLP/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CLP = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CLP/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CLP = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CLP/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CLP = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "CLP",
"to": "JPY"
},
"rate": 0.1636,
"timestamp": 1790432087,
"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 CLPJapanese Yen → Chilean Peso6.1123Convert CLP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.