Convert CHF to JPY
Swiss Franc → Japanese Yen
1 CHF = 190.2594 JPY(1 JPY = 0.00525598 CHF)
Currency converter
1 CHF =
190.2594 JPY
CHF to JPY: last 30 days
Over the last 30 days, 1 CHF traded between 188.8319 and 198.5428 JPY, averaging 192.1746 JPY. The CHF/JPY rate is down 4.17% since 2026-08-28.
- 30-day high
- 198.5428
- 2026-08-28
- 30-day low
- 188.8319
- 2026-09-17
- 30-day average
- 192.1746
- Days with data: 30
- 30-day change
- -4.17%
- since 2026-08-28
198.5428
188.83192026-08-28 → 2026-09-26
| Date | 1 CHF in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 190.2594 | 0.00% |
| 2026-09-25 | 190.2594 | -0.86% |
| 2026-09-24 | 191.912 | +0.00% |
| 2026-09-23 | 191.9063 | +0.05% |
| 2026-09-22 | 191.8186 | +0.19% |
| 2026-09-21 | 191.4635 | +0.12% |
| 2026-09-20 | 191.2312 | 0.00% |
| 2026-09-19 | 191.2312 | 0.00% |
| 2026-09-18 | 191.2312 | +1.27% |
| 2026-09-17 | 188.8319 | -0.25% |
| 2026-09-16 | 189.3116 | -0.07% |
| 2026-09-15 | 189.4449 | +0.08% |
| 2026-09-14 | 189.2905 | +0.19% |
| 2026-09-13 | 188.9366 | 0.00% |
| 2026-09-12 | 188.9366 | 0.00% |
| Date | 1 CHF in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 188.9366 | -0.50% |
| 2026-09-10 | 189.8815 | -0.01% |
| 2026-09-09 | 189.9092 | -0.12% |
| 2026-09-08 | 190.137 | -0.57% |
| 2026-09-07 | 191.2288 | -0.96% |
| 2026-09-06 | 193.0824 | 0.00% |
| 2026-09-05 | 193.0824 | 0.00% |
| 2026-09-04 | 193.0824 | +0.05% |
| 2026-09-03 | 192.9766 | -1.58% |
| 2026-09-02 | 196.0784 | -0.77% |
| 2026-09-01 | 197.5991 | +0.02% |
| 2026-08-31 | 197.5512 | -0.50% |
| 2026-08-30 | 198.5428 | 0.00% |
| 2026-08-29 | 198.5428 | 0.00% |
| 2026-08-28 | 198.5428 | — |
CHF to JPY conversion table
1 CHF190.2594 JPY
5 CHF951.297 JPY
10 CHF1,902.594 JPY
25 CHF4,756.4849 JPY
50 CHF9,512.9698 JPY
100 CHF19,025.94 JPY
500 CHF95,129.698 JPY
1,000 CHF190,259.4 JPY
5,000 CHF951,296.98 JPY
10,000 CHF1,902,594 JPY
Get the CHF/JPY rate in your app
One GET request returns the latest CHF → 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/CHF/JPY"fetch('https://rate-api.com/api/v1/pair/CHF/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CHF = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "JPY"
},
"rate": 190.2594,
"timestamp": 1790429298,
"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 CHFJapanese Yen → Swiss Franc0.005256Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.