Convert CHF to PHP
Swiss Franc → Philippine Peso
1 CHF = 75.430386 PHP(1 PHP = 0.0132573 CHF)
Currency converter
1 CHF =
75.4304 PHP
CHF to PHP: last 30 days
Over the last 30 days, 1 CHF traded between 75.4304 and 77.4295 PHP, averaging 76.7391 PHP. The CHF/PHP rate is down 2.55% since 2026-08-28.
- 30-day high
- 77.4295
- 2026-09-09
- 30-day low
- 75.4304
- 2026-09-25
- 30-day average
- 76.7391
- Days with data: 30
- 30-day change
- -2.55%
- since 2026-08-28
77.4295
75.43042026-08-28 → 2026-09-26
| Date | 1 CHF in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 75.4304 | 0.00% |
| 2026-09-25 | 75.4304 | -0.50% |
| 2026-09-24 | 75.8083 | -0.26% |
| 2026-09-23 | 76.0075 | -0.29% |
| 2026-09-22 | 76.2295 | -0.29% |
| 2026-09-21 | 76.4478 | +0.50% |
| 2026-09-20 | 76.0649 | 0.00% |
| 2026-09-19 | 76.0649 | 0.00% |
| 2026-09-18 | 76.0649 | -0.01% |
| 2026-09-17 | 76.0688 | -0.68% |
| 2026-09-16 | 76.5903 | -0.22% |
| 2026-09-15 | 76.7582 | -0.31% |
| 2026-09-14 | 76.9998 | +0.24% |
| 2026-09-13 | 76.8171 | 0.00% |
| 2026-09-12 | 76.8171 | 0.00% |
| Date | 1 CHF in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 76.8171 | -0.32% |
| 2026-09-10 | 77.0659 | -0.47% |
| 2026-09-09 | 77.4295 | +0.52% |
| 2026-09-08 | 77.0258 | -0.49% |
| 2026-09-07 | 77.4072 | -0.01% |
| 2026-09-06 | 77.4183 | 0.00% |
| 2026-09-05 | 77.4183 | 0.00% |
| 2026-09-04 | 77.4183 | +0.12% |
| 2026-09-03 | 77.3218 | +0.63% |
| 2026-09-02 | 76.8404 | -0.24% |
| 2026-09-01 | 77.0224 | -0.19% |
| 2026-08-31 | 77.1715 | -0.30% |
| 2026-08-30 | 77.4053 | 0.00% |
| 2026-08-29 | 77.4053 | 0.00% |
| 2026-08-28 | 77.4053 | — |
CHF to PHP conversion table
1 CHF75.4304 PHP
5 CHF377.1519 PHP
10 CHF754.3039 PHP
25 CHF1,885.7597 PHP
50 CHF3,771.5193 PHP
100 CHF7,543.0386 PHP
500 CHF37,715.193 PHP
1,000 CHF75,430.386 PHP
5,000 CHF377,151.93 PHP
10,000 CHF754,303.86 PHP
Get the CHF/PHP rate in your app
One GET request returns the latest CHF → PHP 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/PHP"fetch('https://rate-api.com/api/v1/pair/CHF/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/PHP');
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']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "PHP"
},
"rate": 75.4304,
"timestamp": 1790429235,
"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
PHP to CHFPhilippine Peso → Swiss Franc0.013257Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.