Convert USD to CUP
US Dollar → Cuban Peso
1 USD = 24.00084 CUP(1 CUP = 0.0416652 USD)
Currency converter
1 USD =
24.0008 CUP
USD to CUP: last 30 days
Over the last 30 days, 1 USD traded between 24.0008 and 26.5156 CUP, averaging 26.3365 CUP. The USD/CUP rate is down 9.40% since 2026-08-28.
- 30-day high
- 26.5156
- 2026-09-23
- 30-day low
- 24.0008
- 2026-09-25
- 30-day average
- 26.3365
- Days with data: 30
- 30-day change
- -9.40%
- since 2026-08-28
26.5156
24.00082026-08-28 → 2026-09-26
| Date | 1 USD in CUP | Daily change |
|---|---|---|
| 2026-09-26 | 24.0008 | 0.00% |
| 2026-09-25 | 24.0008 | -9.47% |
| 2026-09-24 | 26.5125 | -0.01% |
| 2026-09-23 | 26.5156 | +0.05% |
| 2026-09-22 | 26.5026 | +0.02% |
| 2026-09-21 | 26.498 | -0.01% |
| 2026-09-20 | 26.5003 | -0.00% |
| 2026-09-19 | 26.5014 | +0.01% |
| 2026-09-18 | 26.5 | +0.03% |
| 2026-09-17 | 26.4927 | -0.03% |
| 2026-09-16 | 26.4994 | -0.01% |
| 2026-09-15 | 26.5032 | -0.01% |
| 2026-09-14 | 26.505 | -0.02% |
| 2026-09-13 | 26.5113 | -0.00% |
| 2026-09-12 | 26.512 | +0.03% |
| Date | 1 USD in CUP | Daily change |
|---|---|---|
| 2026-09-11 | 26.5031 | +0.02% |
| 2026-09-10 | 26.4985 | -0.01% |
| 2026-09-09 | 26.5003 | +0.00% |
| 2026-09-08 | 26.4997 | +0.01% |
| 2026-09-07 | 26.4975 | -0.03% |
| 2026-09-06 | 26.5064 | -0.03% |
| 2026-09-05 | 26.5135 | +0.04% |
| 2026-09-04 | 26.5026 | +0.01% |
| 2026-09-03 | 26.4993 | -0.03% |
| 2026-09-02 | 26.5078 | +0.01% |
| 2026-09-01 | 26.5052 | +0.01% |
| 2026-08-31 | 26.502 | -0.00% |
| 2026-08-30 | 26.502 | -0.03% |
| 2026-08-29 | 26.5093 | +0.07% |
| 2026-08-28 | 26.4906 | — |
USD to CUP conversion table
1 USD24.0008 CUP
5 USD120.0042 CUP
10 USD240.0084 CUP
25 USD600.021 CUP
50 USD1,200.042 CUP
100 USD2,400.084 CUP
500 USD12,000.42 CUP
1,000 USD24,000.84 CUP
5,000 USD120,004.2 CUP
10,000 USD240,008.4 CUP
Get the USD/CUP rate in your app
One GET request returns the latest USD → 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/USD/CUP"fetch('https://rate-api.com/api/v1/pair/USD/CUP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} CUP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/CUP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} CUP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/CUP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} CUP\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "CUP"
},
"rate": 24.0008,
"timestamp": 1790429294,
"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 USDCuban Peso → US Dollar0.041665Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.