Convert CUP to AUD
Cuban Peso → Australian Dollar
1 CUP = 0.059266 AUD(1 AUD = 16.873094 CUP)
Currency converter
1 CUP =
0.059266 AUD
CUP to AUD: last 30 days
Over the last 30 days, 1 CUP traded between 0.05223 and 0.059266 AUD, averaging 0.053157 AUD. The CUP/AUD rate is up 12.96% since 2026-08-28.
- 30-day high
- 0.059266
- 2026-09-25
- 30-day low
- 0.05223
- 2026-09-09
- 30-day average
- 0.053157
- Days with data: 30
- 30-day change
- +12.96%
- since 2026-08-28
0.059266
0.052232026-08-28 → 2026-09-26
| Date | 1 CUP in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.059266 | 0.00% |
| 2026-09-25 | 0.059266 | +10.41% |
| 2026-09-24 | 0.053679 | +0.59% |
| 2026-09-23 | 0.053363 | +0.56% |
| 2026-09-22 | 0.053066 | +0.37% |
| 2026-09-21 | 0.052872 | -0.24% |
| 2026-09-20 | 0.052999 | +0.00% |
| 2026-09-19 | 0.052997 | -0.01% |
| 2026-09-18 | 0.053 | -0.11% |
| 2026-09-17 | 0.05306 | +0.28% |
| 2026-09-16 | 0.052911 | -0.08% |
| 2026-09-15 | 0.052952 | +0.06% |
| 2026-09-14 | 0.052918 | +0.63% |
| 2026-09-13 | 0.052589 | +0.00% |
| 2026-09-12 | 0.052588 | -0.03% |
| Date | 1 CUP in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.052605 | +0.16% |
| 2026-09-10 | 0.052524 | +0.56% |
| 2026-09-09 | 0.05223 | -0.15% |
| 2026-09-08 | 0.052306 | -0.01% |
| 2026-09-07 | 0.052311 | -0.12% |
| 2026-09-06 | 0.052372 | +0.03% |
| 2026-09-05 | 0.052358 | -0.04% |
| 2026-09-04 | 0.05238 | -0.16% |
| 2026-09-03 | 0.052462 | -0.60% |
| 2026-09-02 | 0.052781 | -0.10% |
| 2026-09-01 | 0.052831 | +0.27% |
| 2026-08-31 | 0.052687 | +0.46% |
| 2026-08-30 | 0.052445 | +0.03% |
| 2026-08-29 | 0.052431 | -0.07% |
| 2026-08-28 | 0.052468 | — |
CUP to AUD conversion table
1 CUP0.059266 AUD
5 CUP0.29633 AUD
10 CUP0.59266 AUD
25 CUP1.4816 AUD
50 CUP2.9633 AUD
100 CUP5.9266 AUD
500 CUP29.633 AUD
1,000 CUP59.266 AUD
5,000 CUP296.3298 AUD
10,000 CUP592.6595 AUD
Get the CUP/AUD rate in your app
One GET request returns the latest CUP → AUD 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/CUP/AUD"fetch('https://rate-api.com/api/v1/pair/CUP/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CUP = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CUP/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CUP = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CUP/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CUP = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "CUP",
"to": "AUD"
},
"rate": 0.0593,
"timestamp": 1790432041,
"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
AUD to CUPAustralian Dollar → Cuban Peso16.8731Convert CUP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.