Convert EUR to UAH
Euro → Ukrainian Hryvnia
1 EUR = 51.132648 UAH(1 UAH = 0.019557 EUR)
Currency converter
1 EUR =
51.1326 UAH
EUR to UAH: last 30 days
Over the last 30 days, 1 EUR traded between 51.1207 and 52.0021 UAH, averaging 51.5637 UAH. The EUR/UAH rate is down 1.45% since 2026-08-28.
- 30-day high
- 52.0021
- 2026-09-09
- 30-day low
- 51.1207
- 2026-09-24
- 30-day average
- 51.5637
- Days with data: 30
- 30-day change
- -1.45%
- since 2026-08-28
52.0021
51.12072026-08-28 → 2026-09-26
| Date | 1 EUR in UAH | Daily change |
|---|---|---|
| 2026-09-26 | 51.1326 | 0.00% |
| 2026-09-25 | 51.1326 | +0.02% |
| 2026-09-24 | 51.1207 | -0.13% |
| 2026-09-23 | 51.1864 | -0.25% |
| 2026-09-22 | 51.3173 | -0.13% |
| 2026-09-21 | 51.3844 | +0.38% |
| 2026-09-20 | 51.1919 | +0.00% |
| 2026-09-19 | 51.1896 | -0.03% |
| 2026-09-18 | 51.204 | -0.15% |
| 2026-09-17 | 51.2793 | -0.42% |
| 2026-09-16 | 51.4941 | -0.16% |
| 2026-09-15 | 51.5743 | +0.28% |
| 2026-09-14 | 51.4306 | -0.51% |
| 2026-09-13 | 51.6957 | +0.17% |
| 2026-09-12 | 51.6096 | +0.02% |
| Date | 1 EUR in UAH | Daily change |
|---|---|---|
| 2026-09-11 | 51.5975 | -0.58% |
| 2026-09-10 | 51.8974 | -0.20% |
| 2026-09-09 | 52.0021 | +0.81% |
| 2026-09-08 | 51.584 | -0.59% |
| 2026-09-07 | 51.8901 | +0.08% |
| 2026-09-06 | 51.8502 | +0.18% |
| 2026-09-05 | 51.7562 | -0.32% |
| 2026-09-04 | 51.9248 | +0.21% |
| 2026-09-03 | 51.8156 | +0.49% |
| 2026-09-02 | 51.5614 | -0.00% |
| 2026-09-01 | 51.5639 | -0.48% |
| 2026-08-31 | 51.8132 | -0.15% |
| 2026-08-30 | 51.8931 | -0.08% |
| 2026-08-29 | 51.9352 | +0.10% |
| 2026-08-28 | 51.8825 | — |
EUR to UAH conversion table
1 EUR51.1326 UAH
5 EUR255.6632 UAH
10 EUR511.3265 UAH
25 EUR1,278.3162 UAH
50 EUR2,556.6324 UAH
100 EUR5,113.2648 UAH
500 EUR25,566.324 UAH
1,000 EUR51,132.648 UAH
5,000 EUR255,663.24 UAH
10,000 EUR511,326.48 UAH
Get the EUR/UAH rate in your app
One GET request returns the latest EUR → UAH 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/EUR/UAH"fetch('https://rate-api.com/api/v1/pair/EUR/UAH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} UAH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/UAH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} UAH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/UAH');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} UAH\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "UAH"
},
"rate": 51.1326,
"timestamp": 1790429367,
"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
UAH to EURUkrainian Hryvnia → Euro0.019557Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.