Convert CAD to VES
Canadian Dollar → Venezuelan Bolívar
1 CAD = 603.71863 VES(1 VES = 0.0016564 CAD)
Currency converter
1 CAD =
603.7186 VES
CAD to VES: last 30 days
Over the last 30 days, 1 CAD traded between 570.2175 and 605.6256 VES, averaging 592.9346 VES. The CAD/VES rate is up 5.78% since 2026-08-29.
- 30-day high
- 605.6256
- 2026-09-22
- 30-day low
- 570.2175
- 2026-08-31
- 30-day average
- 592.9346
- Days with data: 30
- 30-day change
- +5.78%
- since 2026-08-29
605.6256
570.21752026-08-29 → 2026-09-27
| Date | 1 CAD in VES | Daily change |
|---|---|---|
| 2026-09-27 | 603.7186 | 0.00% |
| 2026-09-26 | 603.7186 | +0.06% |
| 2026-09-25 | 603.355 | -0.12% |
| 2026-09-24 | 604.0716 | -0.08% |
| 2026-09-23 | 604.5428 | -0.18% |
| 2026-09-22 | 605.6256 | +0.02% |
| 2026-09-21 | 605.5066 | +0.11% |
| 2026-09-20 | 604.8578 | -0.03% |
| 2026-09-19 | 605.0101 | +0.26% |
| 2026-09-18 | 603.4651 | -0.16% |
| 2026-09-17 | 604.4233 | +0.51% |
| 2026-09-16 | 601.3698 | -0.05% |
| 2026-09-15 | 601.6658 | +1.05% |
| 2026-09-14 | 595.3976 | -0.66% |
| 2026-09-13 | 599.339 | -0.58% |
| Date | 1 CAD in VES | Daily change |
|---|---|---|
| 2026-09-12 | 602.8318 | +1.76% |
| 2026-09-11 | 592.3829 | -0.01% |
| 2026-09-10 | 592.4284 | +0.01% |
| 2026-09-09 | 592.3491 | +1.04% |
| 2026-09-08 | 586.2542 | +0.16% |
| 2026-09-07 | 585.3129 | +0.20% |
| 2026-09-06 | 584.1316 | -0.02% |
| 2026-09-05 | 584.2505 | +0.39% |
| 2026-09-04 | 581.994 | +0.19% |
| 2026-09-03 | 580.8738 | +1.12% |
| 2026-09-02 | 574.4184 | +0.21% |
| 2026-09-01 | 573.2411 | +0.53% |
| 2026-08-31 | 570.2175 | -0.06% |
| 2026-08-30 | 570.5333 | -0.04% |
| 2026-08-29 | 570.7512 | — |
CAD to VES conversion table
1 CAD603.7186 VES
5 CAD3,018.5931 VES
10 CAD6,037.1863 VES
25 CAD15,092.966 VES
50 CAD30,185.931 VES
100 CAD60,371.863 VES
500 CAD301,859.31 VES
1,000 CAD603,718.63 VES
5,000 CAD3,018,593.1 VES
10,000 CAD6,037,186.3 VES
Get the CAD/VES rate in your app
One GET request returns the latest CAD → VES 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/CAD/VES"fetch('https://rate-api.com/api/v1/pair/CAD/VES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} VES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/VES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} VES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/VES');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CAD = {$data['rate']} VES\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "VES"
},
"rate": 603.7186,
"timestamp": 1790470784,
"date": "2026-09-27"
}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
VES to CADVenezuelan Bolívar → Canadian Dollar0.0016564Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.