Convert USD to KYD
US Dollar → Cayman Islands Dollar
1 USD = 0.833333 KYD(1 KYD = 1.200001 USD)
Currency converter
1 USD =
0.83333 KYD
USD to KYD: last 30 days
Over the last 30 days, 1 USD traded between 0.82012 and 0.83333 KYD, averaging 0.83014 KYD. The USD/KYD rate is up 0.24% since 2026-08-28.
- 30-day high
- 0.83333
- 2026-09-23
- 30-day low
- 0.82012
- 2026-09-06
- 30-day average
- 0.83014
- Days with data: 30
- 30-day change
- +0.24%
- since 2026-08-28
0.83333
0.820122026-08-28 → 2026-09-26
| Date | 1 USD in KYD | Daily change |
|---|---|---|
| 2026-09-26 | 0.83333 | 0.00% |
| 2026-09-25 | 0.83333 | 0.00% |
| 2026-09-24 | 0.83333 | 0.00% |
| 2026-09-23 | 0.83333 | +0.51% |
| 2026-09-22 | 0.82913 | -0.22% |
| 2026-09-21 | 0.83096 | +1.20% |
| 2026-09-20 | 0.82108 | -1.37% |
| 2026-09-19 | 0.8325 | -0.09% |
| 2026-09-18 | 0.83327 | +0.37% |
| 2026-09-17 | 0.83024 | -0.17% |
| 2026-09-16 | 0.83169 | +0.06% |
| 2026-09-15 | 0.83119 | -0.05% |
| 2026-09-14 | 0.83157 | +1.24% |
| 2026-09-13 | 0.82135 | -1.29% |
| 2026-09-12 | 0.8321 | +0.06% |
| Date | 1 USD in KYD | Daily change |
|---|---|---|
| 2026-09-11 | 0.83163 | +0.30% |
| 2026-09-10 | 0.82918 | -0.30% |
| 2026-09-09 | 0.83169 | +0.08% |
| 2026-09-08 | 0.83103 | -0.07% |
| 2026-09-07 | 0.83164 | +1.41% |
| 2026-09-06 | 0.82012 | -1.44% |
| 2026-09-05 | 0.83212 | +0.36% |
| 2026-09-04 | 0.82914 | -0.23% |
| 2026-09-03 | 0.83109 | -0.06% |
| 2026-09-02 | 0.83156 | +0.01% |
| 2026-09-01 | 0.83151 | +0.09% |
| 2026-08-31 | 0.83077 | +1.23% |
| 2026-08-30 | 0.82068 | -1.41% |
| 2026-08-29 | 0.8324 | +0.13% |
| 2026-08-28 | 0.83135 | — |
USD to KYD conversion table
1 USD0.83333 KYD
5 USD4.1667 KYD
10 USD8.3333 KYD
25 USD20.8333 KYD
50 USD41.6667 KYD
100 USD83.3333 KYD
500 USD416.6665 KYD
1,000 USD833.333 KYD
5,000 USD4,166.665 KYD
10,000 USD8,333.33 KYD
Get the USD/KYD rate in your app
One GET request returns the latest USD → KYD 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/KYD"fetch('https://rate-api.com/api/v1/pair/USD/KYD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} KYD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/KYD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} KYD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/KYD');
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']} KYD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "KYD"
},
"rate": 0.8333,
"timestamp": 1790429356,
"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
KYD to USDCayman Islands Dollar → US Dollar1.2Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.