Convert UAH to EUR
Ukrainian Hryvnia → Euro
1 UAH = 0.019557 EUR(1 EUR = 51.132648 UAH)
Currency converter
1 UAH =
0.019557 EUR
UAH to EUR: last 30 days
Over the last 30 days, 1 UAH traded between 0.01923 and 0.019562 EUR, averaging 0.019394 EUR. The UAH/EUR rate is up 1.47% since 2026-08-28.
- 30-day high
- 0.019562
- 2026-09-24
- 30-day low
- 0.01923
- 2026-09-09
- 30-day average
- 0.019394
- Days with data: 30
- 30-day change
- +1.47%
- since 2026-08-28
0.019562
0.019232026-08-28 → 2026-09-26
| Date | 1 UAH in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.019557 | 0.00% |
| 2026-09-25 | 0.019557 | -0.02% |
| 2026-09-24 | 0.019562 | +0.13% |
| 2026-09-23 | 0.019536 | +0.26% |
| 2026-09-22 | 0.019487 | +0.13% |
| 2026-09-21 | 0.019461 | -0.37% |
| 2026-09-20 | 0.019534 | -0.00% |
| 2026-09-19 | 0.019535 | +0.03% |
| 2026-09-18 | 0.01953 | +0.15% |
| 2026-09-17 | 0.019501 | +0.42% |
| 2026-09-16 | 0.01942 | +0.16% |
| 2026-09-15 | 0.019389 | -0.28% |
| 2026-09-14 | 0.019444 | +0.52% |
| 2026-09-13 | 0.019344 | -0.17% |
| 2026-09-12 | 0.019376 | -0.02% |
| Date | 1 UAH in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.019381 | +0.58% |
| 2026-09-10 | 0.019269 | +0.20% |
| 2026-09-09 | 0.01923 | -0.80% |
| 2026-09-08 | 0.019386 | +0.59% |
| 2026-09-07 | 0.019271 | -0.08% |
| 2026-09-06 | 0.019286 | -0.18% |
| 2026-09-05 | 0.019321 | +0.33% |
| 2026-09-04 | 0.019259 | -0.21% |
| 2026-09-03 | 0.019299 | -0.49% |
| 2026-09-02 | 0.019394 | +0.00% |
| 2026-09-01 | 0.019393 | +0.48% |
| 2026-08-31 | 0.0193 | +0.15% |
| 2026-08-30 | 0.01927 | +0.08% |
| 2026-08-29 | 0.019255 | -0.10% |
| 2026-08-28 | 0.019274 | — |
UAH to EUR conversion table
1 UAH0.019557 EUR
5 UAH0.097785 EUR
10 UAH0.19557 EUR
25 UAH0.48892 EUR
50 UAH0.97785 EUR
100 UAH1.9557 EUR
500 UAH9.7785 EUR
1,000 UAH19.557 EUR
5,000 UAH97.7849 EUR
10,000 UAH195.5698 EUR
Get the UAH/EUR rate in your app
One GET request returns the latest UAH → EUR 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/UAH/EUR"fetch('https://rate-api.com/api/v1/pair/UAH/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 UAH = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/UAH/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 UAH = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/UAH/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 UAH = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "UAH",
"to": "EUR"
},
"rate": 0.0196,
"timestamp": 1790435280,
"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
EUR to UAHEuro → Ukrainian Hryvnia51.1326Convert UAH to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.