Convert HRK to USD
Croatian Kuna → US Dollar
1 HRK = 0.151344 USD(1 USD = 6.607472 HRK)
Currency converter
1 HRK =
0.15134 USD
HRK to USD: last 30 days
Over the last 30 days, 1 HRK traded between 0.15087 and 0.15457 USD, averaging 0.15327 USD. The HRK/USD rate is down 2.09% since 2026-08-28.
- 30-day high
- 0.15457
- 2026-08-28
- 30-day low
- 0.15087
- 2026-09-24
- 30-day average
- 0.15327
- Days with data: 30
- 30-day change
- -2.09%
- since 2026-08-28
0.15457
0.150872026-08-28 → 2026-09-26
| Date | 1 HRK in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.15134 | 0.00% |
| 2026-09-25 | 0.15134 | +0.32% |
| 2026-09-24 | 0.15087 | -0.39% |
| 2026-09-23 | 0.15145 | -0.55% |
| 2026-09-22 | 0.15229 | -0.02% |
| 2026-09-21 | 0.15233 | -0.08% |
| 2026-09-20 | 0.15245 | +0.00% |
| 2026-09-19 | 0.15244 | -0.01% |
| 2026-09-18 | 0.15246 | +0.21% |
| 2026-09-17 | 0.15214 | -0.69% |
| 2026-09-16 | 0.1532 | +0.06% |
| 2026-09-15 | 0.1531 | -0.28% |
| 2026-09-14 | 0.15353 | -0.27% |
| 2026-09-13 | 0.15394 | +0.00% |
| 2026-09-12 | 0.15394 | -0.03% |
| Date | 1 HRK in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.15398 | -0.31% |
| 2026-09-10 | 0.15446 | +0.06% |
| 2026-09-09 | 0.15437 | +0.05% |
| 2026-09-08 | 0.15429 | +0.12% |
| 2026-09-07 | 0.1541 | -0.06% |
| 2026-09-06 | 0.15418 | +0.03% |
| 2026-09-05 | 0.15414 | -0.08% |
| 2026-09-04 | 0.15427 | +0.22% |
| 2026-09-03 | 0.15393 | +0.16% |
| 2026-09-02 | 0.15368 | -0.21% |
| 2026-09-01 | 0.154 | +0.11% |
| 2026-08-31 | 0.15384 | +0.05% |
| 2026-08-30 | 0.15376 | +0.03% |
| 2026-08-29 | 0.15372 | -0.55% |
| 2026-08-28 | 0.15457 | — |
HRK to USD conversion table
1 HRK0.15134 USD
5 HRK0.75672 USD
10 HRK1.5134 USD
25 HRK3.7836 USD
50 HRK7.5672 USD
100 HRK15.1344 USD
500 HRK75.6719 USD
1,000 HRK151.3438 USD
5,000 HRK756.7191 USD
10,000 HRK1,513.4382 USD
Get the HRK/USD rate in your app
One GET request returns the latest HRK → USD 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/HRK/USD"fetch('https://rate-api.com/api/v1/pair/HRK/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HRK = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HRK/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HRK = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HRK/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 HRK = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "HRK",
"to": "USD"
},
"rate": 0.1513,
"timestamp": 1790435069,
"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
USD to HRKUS Dollar → Croatian Kuna6.6075Convert HRK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.