Convert AUD to CUP
Australian Dollar → Cuban Peso
1 AUD = 16.873094 CUP(1 CUP = 0.059266 AUD)
Currency converter
1 AUD =
16.8731 CUP
AUD to CUP: last 30 days
Over the last 30 days, 1 AUD traded between 16.8731 and 19.1462 CUP, averaging 18.8289 CUP. The AUD/CUP rate is down 11.47% since 2026-08-28.
- 30-day high
- 19.1462
- 2026-09-09
- 30-day low
- 16.8731
- 2026-09-25
- 30-day average
- 18.8289
- Days with data: 30
- 30-day change
- -11.47%
- since 2026-08-28
19.1462
16.87312026-08-28 → 2026-09-26
| Date | 1 AUD in CUP | Daily change |
|---|---|---|
| 2026-09-26 | 16.8731 | 0.00% |
| 2026-09-25 | 16.8731 | -9.43% |
| 2026-09-24 | 18.6294 | -0.59% |
| 2026-09-23 | 18.7396 | -0.56% |
| 2026-09-22 | 18.8443 | -0.37% |
| 2026-09-21 | 18.9136 | +0.24% |
| 2026-09-20 | 18.8681 | -0.00% |
| 2026-09-19 | 18.8689 | +0.01% |
| 2026-09-18 | 18.8679 | +0.11% |
| 2026-09-17 | 18.8466 | -0.28% |
| 2026-09-16 | 18.8998 | +0.08% |
| 2026-09-15 | 18.885 | -0.06% |
| 2026-09-14 | 18.8971 | -0.62% |
| 2026-09-13 | 19.0154 | -0.00% |
| 2026-09-12 | 19.0159 | +0.03% |
| Date | 1 AUD in CUP | Daily change |
|---|---|---|
| 2026-09-11 | 19.0095 | -0.15% |
| 2026-09-10 | 19.039 | -0.56% |
| 2026-09-09 | 19.1462 | +0.15% |
| 2026-09-08 | 19.1182 | +0.01% |
| 2026-09-07 | 19.1166 | +0.12% |
| 2026-09-06 | 19.0941 | -0.03% |
| 2026-09-05 | 19.0992 | +0.04% |
| 2026-09-04 | 19.0913 | +0.16% |
| 2026-09-03 | 19.0615 | +0.61% |
| 2026-09-02 | 18.9463 | +0.10% |
| 2026-09-01 | 18.9283 | -0.27% |
| 2026-08-31 | 18.9801 | -0.46% |
| 2026-08-30 | 19.0676 | -0.03% |
| 2026-08-29 | 19.0728 | +0.07% |
| 2026-08-28 | 19.0594 | — |
AUD to CUP conversion table
1 AUD16.8731 CUP
5 AUD84.3655 CUP
10 AUD168.7309 CUP
25 AUD421.8273 CUP
50 AUD843.6547 CUP
100 AUD1,687.3094 CUP
500 AUD8,436.5468 CUP
1,000 AUD16,873.094 CUP
5,000 AUD84,365.468 CUP
10,000 AUD168,730.94 CUP
Get the AUD/CUP rate in your app
One GET request returns the latest AUD → CUP 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/CUP"fetch('https://rate-api.com/api/v1/pair/AUD/CUP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} CUP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/CUP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} CUP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/CUP');
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']} CUP\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "CUP"
},
"rate": 16.8731,
"timestamp": 1790429290,
"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
CUP to AUDCuban Peso → Australian Dollar0.059266Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.