Convert CHF to BRL
Swiss Franc → Brazilian Real
1 CHF = 6.256326 BRL(1 BRL = 0.159838 CHF)
Currency converter
1 CHF =
6.2563 BRL
CHF to BRL: last 30 days
Over the last 30 days, 1 CHF traded between 6.2204 and 6.4209 BRL, averaging 6.2988 BRL. The CHF/BRL rate is down 2.56% since 2026-08-28.
- 30-day high
- 6.4209
- 2026-08-28
- 30-day low
- 6.2204
- 2026-09-18
- 30-day average
- 6.2988
- Days with data: 30
- 30-day change
- -2.56%
- since 2026-08-28
6.4209
6.22042026-08-28 → 2026-09-26
| Date | 1 CHF in BRL | Daily change |
|---|---|---|
| 2026-09-26 | 6.2563 | 0.00% |
| 2026-09-25 | 6.2563 | -0.04% |
| 2026-09-24 | 6.2589 | +0.35% |
| 2026-09-23 | 6.2368 | -0.24% |
| 2026-09-22 | 6.2521 | +0.15% |
| 2026-09-21 | 6.2428 | +0.36% |
| 2026-09-20 | 6.2204 | 0.00% |
| 2026-09-19 | 6.2204 | 0.00% |
| 2026-09-18 | 6.2204 | -0.04% |
| 2026-09-17 | 6.2229 | -0.96% |
| 2026-09-16 | 6.283 | -0.21% |
| 2026-09-15 | 6.2959 | -0.31% |
| 2026-09-14 | 6.3157 | +0.75% |
| 2026-09-13 | 6.2686 | 0.00% |
| 2026-09-12 | 6.2686 | 0.00% |
| Date | 1 CHF in BRL | Daily change |
|---|---|---|
| 2026-09-11 | 6.2686 | -0.68% |
| 2026-09-10 | 6.3114 | +0.09% |
| 2026-09-09 | 6.3054 | +0.11% |
| 2026-09-08 | 6.2982 | -0.57% |
| 2026-09-07 | 6.3345 | +0.29% |
| 2026-09-06 | 6.3163 | 0.00% |
| 2026-09-05 | 6.3163 | 0.00% |
| 2026-09-04 | 6.3163 | +0.64% |
| 2026-09-03 | 6.2763 | -0.82% |
| 2026-09-02 | 6.328 | -1.34% |
| 2026-09-01 | 6.4142 | +0.28% |
| 2026-08-31 | 6.3964 | -0.38% |
| 2026-08-30 | 6.4209 | 0.00% |
| 2026-08-29 | 6.4209 | 0.00% |
| 2026-08-28 | 6.4209 | — |
CHF to BRL conversion table
1 CHF6.2563 BRL
5 CHF31.2816 BRL
10 CHF62.5633 BRL
25 CHF156.4082 BRL
50 CHF312.8163 BRL
100 CHF625.6326 BRL
500 CHF3,128.163 BRL
1,000 CHF6,256.3261 BRL
5,000 CHF31,281.63 BRL
10,000 CHF62,563.261 BRL
Get the CHF/BRL rate in your app
One GET request returns the latest CHF → BRL 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/BRL"fetch('https://rate-api.com/api/v1/pair/CHF/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/BRL');
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']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "BRL"
},
"rate": 6.2563,
"timestamp": 1790429336,
"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
BRL to CHFBrazilian Real → Swiss Franc0.15984Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.