Convert CAD to ARS
Canadian Dollar → Argentine Peso
1 CAD = 1,074.6457 ARS(1 ARS = 0.000930539 CAD)
Currency converter
1 CAD =
1,074.6457 ARS
CAD to ARS: last 30 days
Over the last 30 days, 1 CAD traded between 1,073.7768 and 1,097.8255 ARS, averaging 1,086.0192 ARS. The CAD/ARS rate is down 1.55% since 2026-08-28.
- 30-day high
- 1,097.8255
- 2026-09-09
- 30-day low
- 1,073.7768
- 2026-09-24
- 30-day average
- 1,086.0192
- Days with data: 30
- 30-day change
- -1.55%
- since 2026-08-28
1,097.8255
1,073.77682026-08-28 → 2026-09-26
| Date | 1 CAD in ARS | Daily change |
|---|---|---|
| 2026-09-26 | 1,074.6457 | 0.00% |
| 2026-09-25 | 1,074.6457 | +0.08% |
| 2026-09-24 | 1,073.7768 | -0.09% |
| 2026-09-23 | 1,074.7599 | -0.30% |
| 2026-09-22 | 1,078.0144 | +0.02% |
| 2026-09-21 | 1,077.8279 | -0.31% |
| 2026-09-20 | 1,081.128 | -0.15% |
| 2026-09-19 | 1,082.6994 | +0.45% |
| 2026-09-18 | 1,077.7994 | -0.29% |
| 2026-09-17 | 1,080.9277 | -0.01% |
| 2026-09-16 | 1,081.0375 | -0.21% |
| 2026-09-15 | 1,083.3113 | -0.57% |
| 2026-09-14 | 1,089.5027 | +0.08% |
| 2026-09-13 | 1,088.6306 | -0.00% |
| 2026-09-12 | 1,088.6567 | -0.27% |
| Date | 1 CAD in ARS | Daily change |
|---|---|---|
| 2026-09-11 | 1,091.5515 | -0.38% |
| 2026-09-10 | 1,095.6678 | -0.20% |
| 2026-09-09 | 1,097.8255 | +0.25% |
| 2026-09-08 | 1,095.0435 | +0.28% |
| 2026-09-07 | 1,091.993 | -0.10% |
| 2026-09-06 | 1,093.1275 | +0.04% |
| 2026-09-05 | 1,092.6891 | -0.04% |
| 2026-09-04 | 1,093.0789 | -0.21% |
| 2026-09-03 | 1,095.3835 | +0.83% |
| 2026-09-02 | 1,086.3415 | +0.00% |
| 2026-09-01 | 1,086.3127 | +0.03% |
| 2026-08-31 | 1,086.0272 | -0.14% |
| 2026-08-30 | 1,087.6023 | -0.13% |
| 2026-08-29 | 1,089.0507 | -0.23% |
| 2026-08-28 | 1,091.5174 | — |
CAD to ARS conversion table
1 CAD1,074.6457 ARS
5 CAD5,373.2284 ARS
10 CAD10,746.457 ARS
25 CAD26,866.142 ARS
50 CAD53,732.284 ARS
100 CAD107,464.57 ARS
500 CAD537,322.84 ARS
1,000 CAD1,074,645.7 ARS
5,000 CAD5,373,228.4 ARS
10,000 CAD10,746,457 ARS
Get the CAD/ARS rate in your app
One GET request returns the latest CAD → ARS 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/ARS"fetch('https://rate-api.com/api/v1/pair/CAD/ARS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} ARS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/ARS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} ARS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/ARS');
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']} ARS\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "ARS"
},
"rate": 1074.6457,
"timestamp": 1790447441,
"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
ARS to CADArgentine Peso → Canadian Dollar0.00093054Convert CAD to other currencies
Convert other currencies to ARS
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.