REST API · Real-Time · Free Tier

CAD to CZK Exchange Rate API

Convert Canadian Dollar to Czech Koruna programmatically. Mid-market rates from Reuters, updated every 60 seconds.

CAD → CZK
Canadian Dollar to Czech Koruna
Loading…
LIVE
Mid-market rate · Source: Reuters/Refinitiv · Updated every 60s ·

Start Using the CAD/CZK API

Create a free account and get your API key in seconds. No credit card required.

Get Free API Key →

API Request & Response

Get the CAD/CZK rate with a single API call.

Request
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://exchange-rateapi.com/api/v1/rates?source=CAD&target=CZK"
Response · 200 OK
{
  "source": "CAD",
  "target": "CZK",
  "rate": 16.9439,
  "timestamp": "2026-05-13T12:00:00Z"
}

Code Examples

Copy-paste integration for CAD to CZK conversion.

curl -s -H "Authorization: Bearer YOUR_API_KEY" \
  "https://exchange-rateapi.com/api/v1/rates?source=CAD&target=CZK" | jq .
const response = await fetch(
  "https://exchange-rateapi.com/api/v1/rates?source=CAD&target=CZK",
  { headers: { "Authorization": `Bearer ${API_KEY}` } }
);
const data = await response.json();
console.log(`CAD/CZK: ${data.rate}`);
import requests

response = requests.get(
    "https://exchange-rateapi.com/api/v1/rates",
    params={"source": "CAD", "target": "CZK"},
    headers={"Authorization": f"Bearer {API_KEY}"}
)
data = response.json()
print(f"CAD/CZK: {data['rate']}")
$ch = curl_init();
curl_setopt_array($ch, [
    CURLOPT_URL => "https://exchange-rateapi.com/api/v1/rates?source=CAD&target=CZK",
    CURLOPT_HTTPHEADER => ["Authorization: Bearer " . $apiKey],
    CURLOPT_RETURNTRANSFER => true,
]);
$data = json_decode(curl_exec($ch), true);
echo "CAD/CZK: " . $data['rate'];
JavaScript SDK
// npm install @exchangerateapi/sdk
import { ExchangeRateAPI } from '@exchangerateapi/sdk';

const api = new ExchangeRateAPI('YOUR_API_KEY');
const rate = await api.latest('CAD', 'CZK');
console.log(rate); // 16.9439
Python SDK
# pip install exchangerateapi
from exchange_rateapi import ExchangeRateAPI

api = ExchangeRateAPI("YOUR_API_KEY")
rate = api.get_rate("CAD", "CZK")
print(rate)  # 16.9439

Historical CAD/CZK Rates via API

Retrieve historical exchange rate data for trend analysis, backtesting, and reporting.

Historical Rates Endpoint
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://exchange-rateapi.com/api/historical-rates?source=CAD&target=CZK&period=30d"
📅

1D · Hourly

Hourly snapshots for the past 24 hours

📈

7D / 30D · Daily

Daily closing rates for weekly and monthly views

📆

1Y · Daily

Full year of daily rates for long-term trends

Why Use Our CAD/CZK API

60-Second Updates

Real-time interbank rates from Reuters/Refinitiv

🔒

Simple Bearer Auth

One API key, one header. Start in seconds

🌐

<50ms Globally

Cloudflare edge network in 300+ cities

📦

Official SDKs

JavaScript, Python, PHP, and React

💰

Mid-Market Rates

No markup, no spread, no hidden fees

🆕

Free Tier

300 requests/month. No credit card required

CAD/CZK API — FAQ

Send a GET request to https://exchange-rateapi.com/api/v1/rates?source=CAD&target=CZK with your API key in the Authorization: Bearer header. The JSON response includes the current mid-market rate.
Yes. The free tier includes 300 requests per month for all 160+ currencies, including CAD/CZK. No credit card required. Paid plans start at €4.99/month for 5,000 requests.
Every 60 seconds. Rates are sourced from Reuters/Refinitiv interbank feeds and represent the mid-market rate — the midpoint between buy and sell prices with no markup.
Yes. Use the /api/historical-rates endpoint with period=1d, 7d, 30d, or 1y. Custom date ranges are available on paid plans with from and to parameters.
Yes. Add the amount parameter: ?source=CAD&target=CZK&amount=1000. The response includes both the rate and the converted amount.
All official SDKs: JavaScript (npm install @exchangerateapi/sdk), Python (pip install exchangerateapi), PHP (composer require exchangerateapi/sdk), and React.

Related Currency Pair APIs

View all currency pair APIs →