Convert CZK to AUD
Czech Koruna → Australian Dollar
1 CZK = 0.0666256 AUD(1 AUD = 15.009248 CZK)
Currency converter
1 CZK =
0.066626 AUD
CZK to AUD: last 30 days
Over the last 30 days, 1 CZK traded between 0.066104 and 0.067177 AUD, averaging 0.066599 AUD. The CZK/AUD rate is down 0.58% since 2026-08-28.
- 30-day high
- 0.067177
- 2026-09-01
- 30-day low
- 0.066104
- 2026-09-21
- 30-day average
- 0.066599
- Days with data: 30
- 30-day change
- -0.58%
- since 2026-08-28
0.067177
0.0661042026-08-28 → 2026-09-26
| Date | 1 CZK in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.066626 | 0.00% |
| 2026-09-25 | 0.066626 | +0.49% |
| 2026-09-24 | 0.066302 | +0.13% |
| 2026-09-23 | 0.066218 | -0.01% |
| 2026-09-22 | 0.066224 | +0.18% |
| 2026-09-21 | 0.066104 | -0.04% |
| 2026-09-20 | 0.066131 | 0.00% |
| 2026-09-19 | 0.066131 | 0.00% |
| 2026-09-18 | 0.066131 | -0.40% |
| 2026-09-17 | 0.066394 | -0.21% |
| 2026-09-16 | 0.066532 | -0.20% |
| 2026-09-15 | 0.066664 | -0.04% |
| 2026-09-14 | 0.066689 | +0.12% |
| 2026-09-13 | 0.066606 | 0.00% |
| 2026-09-12 | 0.066606 | 0.00% |
| Date | 1 CZK in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.066606 | -0.09% |
| 2026-09-10 | 0.066667 | +0.23% |
| 2026-09-09 | 0.066514 | -0.07% |
| 2026-09-08 | 0.066559 | -0.02% |
| 2026-09-07 | 0.066575 | -0.18% |
| 2026-09-06 | 0.066699 | 0.00% |
| 2026-09-05 | 0.066699 | 0.00% |
| 2026-09-04 | 0.066699 | +0.05% |
| 2026-09-03 | 0.066667 | -0.44% |
| 2026-09-02 | 0.066962 | -0.32% |
| 2026-09-01 | 0.067177 | +0.08% |
| 2026-08-31 | 0.067123 | +0.16% |
| 2026-08-30 | 0.067015 | 0.00% |
| 2026-08-29 | 0.067015 | 0.00% |
| 2026-08-28 | 0.067015 | — |
CZK to AUD conversion table
1 CZK0.066626 AUD
5 CZK0.33313 AUD
10 CZK0.66626 AUD
25 CZK1.6656 AUD
50 CZK3.3313 AUD
100 CZK6.6626 AUD
500 CZK33.3128 AUD
1,000 CZK66.6256 AUD
5,000 CZK333.128 AUD
10,000 CZK666.2559 AUD
Get the CZK/AUD rate in your app
One GET request returns the latest CZK → AUD 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/CZK/AUD"fetch('https://rate-api.com/api/v1/pair/CZK/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CZK = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CZK/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CZK = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CZK/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CZK = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "CZK",
"to": "AUD"
},
"rate": 0.0666,
"timestamp": 1790432119,
"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
AUD to CZKAustralian Dollar → Czech Koruna15.0092Convert CZK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.