Convert AUD to CRC
Australian Dollar → Costa Rican Colón
1 AUD = 318.76784 CRC(1 CRC = 0.00313708 AUD)
Currency converter
1 AUD =
318.7678 CRC
AUD to CRC: last 30 days
Over the last 30 days, 1 AUD traded between 317.7402 and 327.6294 CRC, averaging 322.4656 CRC. The AUD/CRC rate is down 2.29% since 2026-08-28.
- 30-day high
- 327.6294
- 2026-09-09
- 30-day low
- 317.7402
- 2026-09-20
- 30-day average
- 322.4656
- Days with data: 30
- 30-day change
- -2.29%
- since 2026-08-28
327.6294
317.74022026-08-28 → 2026-09-26
| Date | 1 AUD in CRC | Daily change |
|---|---|---|
| 2026-09-26 | 318.7678 | 0.00% |
| 2026-09-25 | 318.7678 | +0.20% |
| 2026-09-24 | 318.1438 | -0.36% |
| 2026-09-23 | 319.2844 | +0.39% |
| 2026-09-22 | 318.041 | -0.34% |
| 2026-09-21 | 319.1256 | +0.44% |
| 2026-09-20 | 317.7402 | -0.22% |
| 2026-09-19 | 318.4452 | -0.01% |
| 2026-09-18 | 318.476 | -0.43% |
| 2026-09-17 | 319.8396 | +0.12% |
| 2026-09-16 | 319.4557 | -0.34% |
| 2026-09-15 | 320.5612 | -0.26% |
| 2026-09-14 | 321.4095 | +0.02% |
| 2026-09-13 | 321.3411 | -0.32% |
| 2026-09-12 | 322.3727 | -0.76% |
| Date | 1 AUD in CRC | Daily change |
|---|---|---|
| 2026-09-11 | 324.8411 | -0.42% |
| 2026-09-10 | 326.2186 | -0.43% |
| 2026-09-09 | 327.6294 | +0.07% |
| 2026-09-08 | 327.403 | +0.01% |
| 2026-09-07 | 327.3762 | +0.76% |
| 2026-09-06 | 324.9123 | -0.07% |
| 2026-09-05 | 325.1493 | -0.37% |
| 2026-09-04 | 326.3494 | +0.14% |
| 2026-09-03 | 325.9077 | +0.48% |
| 2026-09-02 | 324.342 | +0.49% |
| 2026-09-01 | 322.757 | -0.41% |
| 2026-08-31 | 324.0744 | +0.16% |
| 2026-08-30 | 323.5588 | -0.58% |
| 2026-08-29 | 325.4445 | -0.24% |
| 2026-08-28 | 326.2341 | — |
AUD to CRC conversion table
1 AUD318.7678 CRC
5 AUD1,593.8392 CRC
10 AUD3,187.6784 CRC
25 AUD7,969.196 CRC
50 AUD15,938.392 CRC
100 AUD31,876.784 CRC
500 AUD159,383.92 CRC
1,000 AUD318,767.84 CRC
5,000 AUD1,593,839.2 CRC
10,000 AUD3,187,678.4 CRC
Get the AUD/CRC rate in your app
One GET request returns the latest AUD → CRC 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/AUD/CRC"fetch('https://rate-api.com/api/v1/pair/AUD/CRC', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} CRC`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/CRC",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} CRC")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/CRC');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} CRC\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "CRC"
},
"rate": 318.7678,
"timestamp": 1790429299,
"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
CRC to AUDCosta Rican Colón → Australian Dollar0.0031371Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.