Convert PHP to CHF
Philippine Peso → Swiss Franc
1 PHP = 0.0132573 CHF(1 CHF = 75.430386 PHP)
Currency converter
1 PHP =
0.013257 CHF
PHP to CHF: last 30 days
Over the last 30 days, 1 PHP traded between 0.012915 and 0.013257 CHF, averaging 0.013032 CHF. The PHP/CHF rate is up 2.62% since 2026-08-28.
- 30-day high
- 0.013257
- 2026-09-25
- 30-day low
- 0.012915
- 2026-09-09
- 30-day average
- 0.013032
- Days with data: 30
- 30-day change
- +2.62%
- since 2026-08-28
0.013257
0.0129152026-08-28 → 2026-09-26
| Date | 1 PHP in CHF | Daily change |
|---|---|---|
| 2026-09-26 | 0.013257 | 0.00% |
| 2026-09-25 | 0.013257 | +0.50% |
| 2026-09-24 | 0.013191 | +0.26% |
| 2026-09-23 | 0.013157 | +0.29% |
| 2026-09-22 | 0.013118 | +0.29% |
| 2026-09-21 | 0.013081 | -0.50% |
| 2026-09-20 | 0.013147 | 0.00% |
| 2026-09-19 | 0.013147 | 0.00% |
| 2026-09-18 | 0.013147 | +0.01% |
| 2026-09-17 | 0.013146 | +0.69% |
| 2026-09-16 | 0.013056 | +0.22% |
| 2026-09-15 | 0.013028 | +0.31% |
| 2026-09-14 | 0.012987 | -0.24% |
| 2026-09-13 | 0.013018 | 0.00% |
| 2026-09-12 | 0.013018 | 0.00% |
| Date | 1 PHP in CHF | Daily change |
|---|---|---|
| 2026-09-11 | 0.013018 | +0.32% |
| 2026-09-10 | 0.012976 | +0.47% |
| 2026-09-09 | 0.012915 | -0.52% |
| 2026-09-08 | 0.012983 | +0.50% |
| 2026-09-07 | 0.012919 | +0.01% |
| 2026-09-06 | 0.012917 | 0.00% |
| 2026-09-05 | 0.012917 | 0.00% |
| 2026-09-04 | 0.012917 | -0.12% |
| 2026-09-03 | 0.012933 | -0.62% |
| 2026-09-02 | 0.013014 | +0.24% |
| 2026-09-01 | 0.012983 | +0.19% |
| 2026-08-31 | 0.012958 | +0.30% |
| 2026-08-30 | 0.012919 | 0.00% |
| 2026-08-29 | 0.012919 | 0.00% |
| 2026-08-28 | 0.012919 | — |
PHP to CHF conversion table
1 PHP0.013257 CHF
5 PHP0.066286 CHF
10 PHP0.13257 CHF
25 PHP0.33143 CHF
50 PHP0.66286 CHF
100 PHP1.3257 CHF
500 PHP6.6286 CHF
1,000 PHP13.2573 CHF
5,000 PHP66.2863 CHF
10,000 PHP132.5726 CHF
Get the PHP/CHF rate in your app
One GET request returns the latest PHP → CHF 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/PHP/CHF"fetch('https://rate-api.com/api/v1/pair/PHP/CHF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PHP = ${data.rate} CHF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PHP/CHF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PHP = {data['rate']} CHF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PHP/CHF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PHP = {$data['rate']} CHF\n";Example response
{
"success": true,
"pair": {
"from": "PHP",
"to": "CHF"
},
"rate": 0.0133,
"timestamp": 1790432027,
"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
CHF to PHPSwiss Franc → Philippine Peso75.4304Convert PHP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.